##// END OF EJS Templates
Moved 'favorite' link in tag list to the beginning to align them
neko259 -
r290:5c9ac652 default
parent child Browse files
Show More
@@ -12,9 +12,6 b''
12 <div class="post">
12 <div class="post">
13 {% if all_tags %}
13 {% if all_tags %}
14 {% for tag in all_tags %}
14 {% for tag in all_tags %}
15 <a class="tag" href="{% url 'tag' tag.name %}">
16 {{ tag.name }}</a>
17 ({{ tag.get_post_count }} {% trans 'threads' %})
18 {% if tag in user.fav_tags.all %}
15 {% if tag in user.fav_tags.all %}
19 <a href="{% url 'tag_unsubscribe' tag.name %}?next={{ request.path }}"
16 <a href="{% url 'tag_unsubscribe' tag.name %}?next={{ request.path }}"
20 class="fav"></a>
17 class="fav"></a>
@@ -22,6 +19,9 b''
22 <a href="{% url 'tag_subscribe' tag.name %}?next={{ request.path }}"
19 <a href="{% url 'tag_subscribe' tag.name %}?next={{ request.path }}"
23 class="not_fav"></a>
20 class="not_fav"></a>
24 {% endif %}
21 {% endif %}
22 <a class="tag" href="{% url 'tag' tag.name %}">
23 {{ tag.name }}</a>
24 ({{ tag.get_post_count }} {% trans 'threads' %})
25 {% if tag.linked %}
25 {% if tag.linked %}
26 ( +
26 ( +
27 {% for linked_tag in tag.get_linked_tags %}
27 {% for linked_tag in tag.get_linked_tags %}
@@ -38,4 +38,4 b''
38 {% endif %}
38 {% endif %}
39 </div>
39 </div>
40
40
41 {% endblock %} No newline at end of file
41 {% endblock %}
General Comments 0
You need to be logged in to leave comments. Login now