diff options
Diffstat (limited to 'static/website/templates/index.html')
-rw-r--r-- | static/website/templates/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/static/website/templates/index.html b/static/website/templates/index.html index cb5f3df..34fcf15 100644 --- a/static/website/templates/index.html +++ b/static/website/templates/index.html @@ -15,7 +15,7 @@ <tr> <td> <span href="#" class="category" data-toggle="tooltip" data-placement="top" title="{{ question.category}}"> - {{ question.category|truncatechars:15 }} + {{ question.category|truncatechars:12 }} </span> <a class="pull-right" href="{% url 'website:filter' question.category %}?qid={{ question.id }}"> <span class="glyphicon glyphicon-search"></span> @@ -24,7 +24,7 @@ <td> <span class="tutorial" data-toggle="tooltip" data-placement="top" title="{{ question.tutorial}}"> - {{ question.tutorial|truncatechars:15 }} + {{ question.tutorial|truncatechars:12 }} </span> <a class="pull-right" href="{% url 'website:filter' question.category question.tutorial %}?qid={{ question.id }}"> <span class="glyphicon glyphicon-search"></span> @@ -49,7 +49,7 @@ <td> <span class="title" data-toggle="tooltip" data-placement="top" title="{{ question.title }}"> - <a href="{% url 'website:get_question' question.id %}">{{ question.title|truncatechars:45 }}</a> + <a href="{% url 'website:get_question' question.id %}">{{ question.title|truncatechars:40 }}</a> </span> </td> |