Browse Source

Link filtered tags in sidebar to their ?tag= page

merge-requests/85/head
Jason Schwarzenberger 5 years ago
committed by Deimos
parent
commit
2546f831dc
  1. 4
      tildes/tildes/templates/home.jinja2

4
tildes/tildes/templates/home.jinja2

@ -71,7 +71,9 @@
<summary>Filtered topic tags ({{ request.user.filtered_topic_tags|length }})</summary>
<ul class="topic-tags">
{% for tag in request.user.filtered_topic_tags %}
<li class="label label-topic-tag">{{ tag }}</li>
<li class="label label-topic-tag">
<a href="/?tag={{tag}}">{{ tag }}</a>
</li>
{% else %}
<li class="label label-topic-tag">No filtered tags</li>
{% endfor %}

Loading…
Cancel
Save