diff --git a/mayan/apps/appearance/templates/appearance/generic_list_subtemplate.html b/mayan/apps/appearance/templates/appearance/generic_list_subtemplate.html
index 09bd4afccd..5d2ea6b952 100644
--- a/mayan/apps/appearance/templates/appearance/generic_list_subtemplate.html
+++ b/mayan/apps/appearance/templates/appearance/generic_list_subtemplate.html
@@ -30,20 +30,22 @@
{% navigation_get_source_columns source=object_list only_identifier=True as source_column %}
{% if source_column %}
- {% if source_column.is_sortable %}
- {{ source_column.label }}
- {% if source_column.get_sort_field == sort_field %}
- {% if icon_sort %}{{ icon_sort.render }}{% endif %}
+
+ {% if source_column.is_sortable %}
+ {{ source_column.label }}
+ {% if source_column.get_sort_field == sort_field %}
+ {% if icon_sort %}{{ icon_sort.render }}{% endif %}
+ {% endif %}
+ {% else %}
+ {{ source_column.label }}
{% endif %}
- {% else %}
- {{ source_column.label }}
- {% endif %}
- {% if source_column.help_text %}
-
- {% get_icon icon_path='mayan.apps.navigation.icons.icon_source_column_help_text' %}
-
- {% endif %}
+ {% if source_column.help_text %}
+
+ {% get_icon icon_path='mayan.apps.navigation.icons.icon_source_column_help_text' %}
+
+ {% endif %}
+
|
{% endif %}
{% endif %}
@@ -52,20 +54,22 @@
{% navigation_get_source_columns source=object_list exclude_identifier=True as source_columns %}
{% for source_column in source_columns %}
- {% if source_column.is_sortable %}
- {{ source_column.label }}
- {% if source_column.get_sort_field == sort_field %}
- {% if icon_sort %}{{ icon_sort.render }}{% endif %}
+
+ {% if source_column.is_sortable %}
+ {{ source_column.label }}
+ {% if source_column.get_sort_field == sort_field %}
+ {% if icon_sort %}{{ icon_sort.render }}{% endif %}
+ {% endif %}
+ {% else %}
+ {{ source_column.label }}
{% endif %}
- {% else %}
- {{ source_column.label }}
- {% endif %}
- {% if source_column.help_text %}
-
- {% get_icon icon_path='mayan.apps.navigation.icons.icon_source_column_help_text' %}
-
- {% endif %}
+ {% if source_column.help_text %}
+
+ {% get_icon icon_path='mayan.apps.navigation.icons.icon_source_column_help_text' %}
+
+ {% endif %}
+
|
{% endfor %}
{% endif %}