UX: Show column headers on user topic lists

This commit is contained in:
Robin Ward 2017-06-06 16:07:47 -04:00
parent 369bb78f8e
commit 00f06b8086
3 changed files with 15 additions and 13 deletions

View File

@ -1,4 +1,5 @@
<th data-sort-order='{{order}}' class='{{view.className}}'> <th data-sort-order='{{order}}' class='{{view.className}}'>
{{~#if canBulkSelect}}
{{~#if showBulkToggle}} {{~#if showBulkToggle}}
<button class='btn bulk-select' title='{{i18n "topics.bulk.toggle"}}'><i class='fa fa-list'></i></button> <button class='btn bulk-select' title='{{i18n "topics.bulk.toggle"}}'><i class='fa fa-list'></i></button>
{{/if ~}} {{/if ~}}
@ -8,6 +9,7 @@
<button class='btn bulk-clear-all'>{{i18n "topics.bulk.clear_all"}}</button> <button class='btn bulk-clear-all'>{{i18n "topics.bulk.clear_all"}}</button>
</span> </span>
{{/if ~}} {{/if ~}}
{{/if ~}}
{{view.localizedName}} {{view.localizedName}}
{{~#if view.isSorting}} {{~#if view.isSorting}}
<i class='{{view.sortClass}}'></i> <i class='{{view.sortClass}}'></i>

View File

@ -1,9 +1,11 @@
{{#if bulkSelectEnabled}} {{#if bulkSelectEnabled}}
<th class='star'> <th class='star'>
{{#if canBulkSelect}}
<button class='btn bulk-select' title='{{i18n "topics.bulk.toggle"}}'><i class='fa fa-list'></i></button> <button class='btn bulk-select' title='{{i18n "topics.bulk.toggle"}}'><i class='fa fa-list'></i></button>
{{/if}}
</th> </th>
{{/if}} {{/if}}
{{raw "topic-list-header-column" order='default' name='topic.title' bulkSelectEnabled=bulkSelectEnabled showBulkToggle=toggleInTitle}} {{raw "topic-list-header-column" order='default' name='topic.title' bulkSelectEnabled=bulkSelectEnabled showBulkToggle=toggleInTitle canBulkSelect=canBulkSelect}}
{{#unless hideCategory}} {{#unless hideCategory}}
{{raw "topic-list-header-column" sortable=sortable order='category' name='category_title'}} {{raw "topic-list-header-column" sortable=sortable order='category' name='category_title'}}
{{/unless}} {{/unless}}

View File

@ -3,10 +3,8 @@
hideCategory=hideCategory hideCategory=hideCategory
showParticipants=showParticipants showParticipants=showParticipants
showPosters=showPosters showPosters=showPosters
canBulkSelect=canBulkSelect
bulkSelectEnabled=bulkSelectEnabled bulkSelectEnabled=bulkSelectEnabled
selected=selected selected=selected}}
skipHeader=true}}
{{conditional-loading-spinner condition=model.loadingMore}} {{conditional-loading-spinner condition=model.loadingMore}}
{{/load-more}} {{/load-more}}