~linuxgoose/bocpress

998269312d17fad056e8960a12a1a33f49aeff70 — Jordan Robinson 2 months ago 354807b
update post detail page for tag query param on url
1 files changed, 1 insertions(+), 1 deletions(-)

M main/templates/main/post_detail.html
M main/templates/main/post_detail.html => main/templates/main/post_detail.html +1 -1
@@ 68,7 68,7 @@
        <hr>
        <p><b>Tags</b>:
        {% for tag in post.tag_list %}
            <a href="{% url 'post_list_filter' tag %}" class="tag">{{ tag }}</a>{% if not forloop.last %}, {% endif %}
            <a href="{% url 'post_list' %}?tags={{ tag }}" class="tag">{{ tag }}</a>{% if not forloop.last %}, {% endif %}
        {% endfor %}
        </p>
        {% endif %}