Browse Source

Fixed option values on catalog.html so mixItUp will actually sort threads.

pull/85/head
rlt3 7 years ago
parent
commit
c40ca05d75
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      templates/themes/catalog/catalog.html

+ 3
- 3
templates/themes/catalog/catalog.html View File

@@ -29,9 +29,9 @@

<span>{% trans 'Sort by' %}: </span>
<select id="sort_by" style="display: inline-block">
<option selected value="bump-order">{% trans 'Bump order' %}</option>
<option value="creation-date">{% trans 'Creation date' %}</option>
<option value="reply-count">{% trans 'Reply count' %}</option>
<option selected value="bump:desc">{% trans 'Bump order' %}</option>
<option value="time:desc">{% trans 'Creation date' %}</option>
<option value="reply:desc">{% trans 'Reply count' %}</option>
<option value="random">{% trans 'Random' %}</option>
</select>



Loading…
Cancel
Save