0
votes
2answers
344 views
Using string literals as parameters to template tags in Django templates
One of the things I find myself doing often is passing string literals as parameters to template tags or functions; for instance:
{% url my-url 'my_param' %}
Unfor …
