[Fixed]-Django templates: tags in tags

1👍

I think this will work

base.html

<form method="POST" action="{% block url %}{% endblock %}">
 ...
</form>

home.html

{% block url %} {% url 'lists:newList' %} {% endblock %}
👤Anoop

Leave a comment