I know we use {{ }} characters for variables but I want to show my datas between {} characters
I want to show November{12} like that. So what I did is:
<ul>
{% for month in archive %}
<li><a href="?{{month.date|date:"Y-m"}}">{{month.date|date:"F Y"}}{{{month.count}}}</a></li>
{% endfor %}
</ul>
But I got an error like that:
Could not parse the remainder: ‘{month.count’ from ‘{month.count’
How to use { character in template?
1 Answer