Skip to content
Snippets Groups Projects
Commit b5350926 authored by Benjamin Becker's avatar Benjamin Becker
Browse files

Sortieren nach Start und Enddatum [TPSH-209]

parent 607d6901
No related branches found
No related tags found
No related merge requests found
No preview for this file type
...@@ -470,3 +470,20 @@ msgstr "Informationsgegenstand muss angegeben werden." ...@@ -470,3 +470,20 @@ msgstr "Informationsgegenstand muss angegeben werden."
msgid "type subject" msgid "type subject"
msgstr "Informationsgegenstand eingeben" msgstr "Informationsgegenstand eingeben"
msgid "Start Date Ascending"
msgstr "Startdatum aufsteigend"
msgid "Start Date Descending"
msgstr "Starttdatum absteigend"
msgid "End Date Ascending"
msgstr "Enddatum aufsteigend"
msgid "End Date Descending"
msgstr "Enddatum absteigend"
...@@ -13,6 +13,10 @@ ...@@ -13,6 +13,10 @@
(_('Name Descending'), 'title_string desc'), (_('Name Descending'), 'title_string desc'),
(_('Issued Ascending'), 'extras_issued asc'), (_('Issued Ascending'), 'extras_issued asc'),
(_('Issued Descending'), 'extras_issued desc'), (_('Issued Descending'), 'extras_issued desc'),
(_('Start Date Descending'), 'temporal_start desc'),
(_('Start Date Ascending'), 'temporal_start asc'),
(_('End Date Descending'), 'temporal_end desc'),
(_('End Date Ascending'), 'temporal_end asc'),
(_('Popular'), 'views_recent desc') if g.tracking_enabled else (false, false) ] (_('Popular'), 'views_recent desc') if g.tracking_enabled else (false, false) ]
%} %}
{% endif %} {% endif %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment