Skip to content
This repository has been archived by the owner on Aug 19, 2022. It is now read-only.

Commit

Permalink
Merge pull request #87 from jayhardee9/fix-sort-th-frag
Browse files Browse the repository at this point in the history
Fix sort th frag
  • Loading branch information
Thiago C. D'Ávila authored Jun 17, 2020
2 parents c8e1a8a + 289124d commit 733cac3
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{% load i18n %}
<th scope="col" class="{{ class_attrib }}">
{% if sorted_fields %}
<div class="sortoptions">
<a href="{{ url }}" class="toggle glyphicon {% if ascending
%}glyphicon-chevron-up{% else %}glyphicon-chevron-down{% endif %}" title="{%
trans "Toggle sorting" %}"/>
</div>
<div class="sortoptions">
<a href="{{ url }}"
class="toggle glyphicon glyphicon-chevron-{% if ascending %}up{% else %}down{% endif %}"
title="{% trans 'Toggle sorting' %}"/>
</div>
{% endif %}
<div class="text">
<a href="{{ url }}">{{ text }}</a>
Expand Down

0 comments on commit 733cac3

Please sign in to comment.