DjangoGirlsの練習で、post_detailを実装している際に以下のエラーに遭遇した。
結論、原因はhrefのurl指定で {% tag %}
を使用すべき箇所に{{ var }}
を使用していたことであった。
TemplateSyntaxError at /
Could not parse the remainder: ' 'post_detail' pk=post.pk' from 'url 'post_detail' pk=post.pk'
{% extends 'blog/base.html' %}
{% block content %}
{% for post in posts %}
<div>
<h2>
<a href="{{ url 'post_detail' pk=post.pk }}">{{ post.title }}</a>
</h2>
{% if post.published_date %}<p>{{ post.published_date }}</p>{% endif %}
<p>by {{ post.author }}</p>
<p>{{ post.text }}</p>
</div>
{% endfor %}
{% endblock %}