[Answer]-URL naming not working in template

1👍

If you’re using the url tag, note that you don’t need quotes around the url name:

{% url add-node %}

not

{% url 'add-node' %}

Leave a comment