Reputation: 6859
In my template, i use load static to load static files:
{% load static %}
<link rel="stylesheet" href="{% static 'css/default.min.css?t=227' %}" />
but in the browser html changed to this messy code:
<link rel="stylesheet" href="/static/css/default.min.css%3Ft%3D227">
Upvotes: 0
Views: 94
Reputation: 599956
Put the query args outside the template tag.
"{% static 'css/default.min.css' %}?t=227"
Upvotes: 1