Browse Source

Made thread names on popular list even longer.

Ralfp 12 years ago
parent
commit
0efebf124b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      templates/cranefly/index.html

+ 1 - 1
templates/cranefly/index.html

@@ -117,7 +117,7 @@
       <ul class="unstyled">
         {% for thread in popular_threads %}
         <li>
-          <a href="{% url 'thread' thread=thread.pk, slug=thread.slug %}" class="index-popular-thread{% if thread.name|length > 36 %} tooltip-top{% endif %}"{% if thread.name|length > 36 %} title="{{ thread.name }}"{% endif %}>{{ thread.name|short_string(28) }}</a>
+          <a href="{% url 'thread' thread=thread.pk, slug=thread.slug %}" class="index-popular-thread{% if thread.name|length > 42 %} tooltip-top{% endif %}"{% if thread.name|length > 36 %} title="{{ thread.name }}"{% endif %}>{{ thread.name|short_string(42) }}</a>
           <div class="muted"><a href="{% url 'forum' forum=thread.forum_id, slug=thread.forum_slug %}">{{ thread.forum_name }}</a> - {{ thread.last|reltimesince }}</div>
         </li>
         {% endfor %}