[Fixed]-TemplateSyntaxError: 'with' expected with atleast one variable assignment

37👍

There should be no spaces around =. Either use

{% with date=meeting.date %}

or the old syntax:

{% with meeting.date as date %}
👤Selcuk

Leave a comment