Django has two template tags "with" and "url". It would be handy to be able to combine the two:
{% with view=really.long.path.to.some.view.somewhere %}
{% url view.foo %}
{% endwith %}
But if you try doing that, you find out that the "with" isn't getting applied inside the "url" tag (as you get an error about there not being a "view.foo").
So, my question is, am I just missing some flag/option/alternative format that would make the above work, or is truly impossible to simplify "url" tags using "with"?
withdidn't know this was possible. But in most cases I'd rather sidestep the need for such, by declaring named URL patterns and using those names inurlinstead of long.path.to.view – Béres Botond Mar 14 '12 at 21:48