mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
ba0cec2091
- adds a link to search log - display a text if log search queries is disabled - adds link to trust level and user types - adds a description for eeach report when browsing a report directly
45 lines
1.5 KiB
Handlebars
45 lines
1.5 KiB
Handlebars
<h3>{{model.title}}</h3>
|
|
|
|
{{#if model.description}}
|
|
<p>{{model.description}}</p>
|
|
{{/if}}
|
|
|
|
<div class="admin-reports-filter">
|
|
{{i18n 'admin.dashboard.reports.start_date'}} {{date-picker-past value=startDate defaultDate=startDate}}
|
|
{{i18n 'admin.dashboard.reports.end_date'}} {{date-picker-past value=endDate defaultDate=endDate}}
|
|
{{#if showCategoryOptions}}
|
|
{{combo-box filterable=true valueAttribute="value" content=categoryOptions value=categoryId}}
|
|
{{/if}}
|
|
{{#if showGroupOptions}}
|
|
{{combo-box filterable=true valueAttribute="value" content=groupOptions value=groupId}}
|
|
{{/if}}
|
|
{{d-button action="refreshReport" class="btn-primary" label="admin.dashboard.reports.refresh_report" icon="refresh"}}
|
|
{{d-button action="exportCsv" label="admin.export_csv.button_text" icon="download"}}
|
|
</div>
|
|
|
|
<div class='view-options'>
|
|
{{#if viewingTable}}
|
|
{{i18n 'admin.dashboard.reports.view_table'}}
|
|
{{else}}
|
|
<a href {{action "viewAsTable"}}>{{i18n 'admin.dashboard.reports.view_table'}}</a>
|
|
{{/if}}
|
|
|
|
|
{{#if viewingGraph}}
|
|
{{i18n 'admin.dashboard.reports.view_graph'}}
|
|
{{else}}
|
|
<a href {{action "viewAsGraph"}}>{{i18n 'admin.dashboard.reports.view_graph'}}</a>
|
|
{{/if}}
|
|
</div>
|
|
|
|
{{#conditional-loading-spinner condition=refreshing}}
|
|
{{#if viewingGraph}}
|
|
{{admin-graph model=model}}
|
|
{{else}}
|
|
{{admin-table-report model=model}}
|
|
{{/if}}
|
|
|
|
{{#if model.relatedReport}}
|
|
{{admin-table-report model=model.relatedReport}}
|
|
{{/if}}
|
|
{{/conditional-loading-spinner}}
|