[Answered ]-Why url() give me no values when calling inside included template?

2👍

Your list.html template might be missing

{% load url from future %}

Because you are using the ‘as’ syntax, the url tag fails silently.

Leave a comment