Browse Source

Fixed thread icons on moderaiton actions

Rafał Pitoń 10 years ago
parent
commit
70d10a31e2

+ 1 - 3
misago/templates/misago/threads/merge.html

@@ -56,10 +56,8 @@
                   <ul class="list-unstyled">
                     {% for thread in threads %}
                     <li>
-                      {% if thread.is_announcement %}
+                      {% if thread.is_pinned %}
                       <span class="fa fa-star-o fa-fw"></span>
-                      {% elif thread.is_pinned %}
-                      <span class="fa fa-bookmark-o fa-fw"></span>
                       {% else %}
                       <span class="fa fa-circle-o fa-fw"></span>
                       {% endif %}

+ 1 - 3
misago/templates/misago/threads/move.html

@@ -56,10 +56,8 @@
                   <ul class="list-unstyled">
                     {% for thread in threads %}
                     <li>
-                      {% if thread.is_announcement %}
+                      {% if thread.is_pinned %}
                       <span class="fa fa-star-o fa-fw"></span>
-                      {% elif thread.is_pinned %}
-                      <span class="fa fa-bookmark-o fa-fw"></span>
                       {% else %}
                       <span class="fa fa-circle-o fa-fw"></span>
                       {% endif %}