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,12 +1,14 @@
<th data-sort-order='{{order}}' class='{{view.className}}'>
{{~#if showBulkToggle}}
<button class='btn bulk-select' title='{{i18n "topics.bulk.toggle"}}'><i class='fa fa-list'></i></button>
{{/if ~}}
{{~#if bulkSelectEnabled}}
<span class='bulk-select-topics'>
<button class='btn bulk-select-all'>{{i18n "topics.bulk.select_all"}}</button>
<button class='btn bulk-clear-all'>{{i18n "topics.bulk.clear_all"}}</button>
</span>
{{~#if canBulkSelect}}
{{~#if showBulkToggle}}
<button class='btn bulk-select' title='{{i18n "topics.bulk.toggle"}}'><i class='fa fa-list'></i></button>
{{/if ~}}
{{~#if bulkSelectEnabled}}
<span class='bulk-select-topics'>
<button class='btn bulk-select-all'>{{i18n "topics.bulk.select_all"}}</button>
<button class='btn bulk-clear-all'>{{i18n "topics.bulk.clear_all"}}</button>
</span>
{{/if ~}}
{{/if ~}}
{{view.localizedName}}
{{~#if view.isSorting}}

View File

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

View File

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