Answers for "update css static file"

1

django cannot update static css

<link rel='stylesheet' type='text/css' href="{% static 'css/yourname.css' %}?20181209">
Posted by: Guest on June-18-2020
5

django static files

{% load static %}
<img src="{% static "my_app/example.jpg" %}" alt="My image">
Posted by: Guest on May-04-2020

Browse Popular Code Answers by Language