[Fixed]-Django url template with a filter

1👍

You shouldn’t have any quotes since you’re referencing a context variable and not providing a string value. The argument is still a string though so the correct line is <a href="{% url opts|admin_urlname:'changelist' %}">.

Leave a comment