Static Files
Quick Start
- 在 APP 目录下创建 static 目录
- 为了在引用时区分 APP 在 static 目录下再创建名为 APP 的目录

- 在 APP 目录中管理该 APP 的静态文件
- 在模板文件中引入静态文件
{% load static %}
<link rel="stylesheet" href="{% static 'polls/style.css' %}">


{% load static %}
<link rel="stylesheet" href="{% static 'polls/style.css' %}">
