You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{% for post in post_list %}
<divclass="post"><h1><ahref="{% url 'post_detail' pk=post.pk %}">{{ post.title }}</a></h1><!-- List all the post, going to the post page when clicked-->
What does {% %} and {{}} mean? The syntax is called Django template language, and the detailed tutorial is here.