mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
141 lines
4.7 KiB
Handlebars
141 lines
4.7 KiB
Handlebars
<div class="dashboard-left">
|
|
{{#if foundProblems}}
|
|
<div class="dashboard-stats detected-problems">
|
|
<div class="look-here"><i class="icon icon-warning-sign"></i></div>
|
|
<div class="problem-messages">
|
|
<p>
|
|
{{i18n admin.dashboard.problems_found}}
|
|
<ul>
|
|
{{#each problem in problems}}
|
|
<li>{{{problem}}}</li>
|
|
{{/each}}
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
</div>
|
|
{{/if}}
|
|
|
|
{{#if Discourse.SiteSettings.version_checks}}
|
|
<div {{bindAttr class=":dashboard-stats :version-check versionCheck.critical_updates:critical:normal"}}>
|
|
<table class="table table-condensed table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th> </th>
|
|
<th>{{i18n admin.dashboard.installed_version}}</th>
|
|
<th>{{i18n admin.dashboard.latest_version}}</th>
|
|
<th> </th>
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
{{#unless loading}}
|
|
<tbody>
|
|
<td class="title">{{i18n admin.dashboard.version}}</td>
|
|
<td class="version-number"><a {{bindAttr href="versionCheck.gitLink"}} target="_blank">{{ versionCheck.installed_version }}</a></td>
|
|
<td class="version-number">{{ versionCheck.latest_version }}</td>
|
|
<td class="face">
|
|
{{#if versionCheck.upToDate }}
|
|
<span class='icon update-to-date'>☻</span>
|
|
{{else}}
|
|
<span {{bindAttr class=":icon versionCheck.critical_updates:critical-updates-available:updates-available"}}>
|
|
{{#if versionCheck.behindByOneVersion}}
|
|
☺
|
|
{{else}}
|
|
☹
|
|
{{/if}}
|
|
</span>
|
|
{{/if}}
|
|
</td>
|
|
<td class="version-notes">
|
|
{{#if versionCheck.upToDate }}
|
|
{{i18n admin.dashboard.up_to_date}}
|
|
{{else}}
|
|
<span class="critical-note">{{i18n admin.dashboard.critical_available}}</span>
|
|
<span class="normal-note">{{i18n admin.dashboard.updates_available}}</span>
|
|
{{i18n admin.dashboard.please_upgrade}}
|
|
{{/if}}
|
|
</td>
|
|
</tbody>
|
|
{{/unless}}
|
|
</table>
|
|
</div>
|
|
{{/if}}
|
|
|
|
<div class="dashboard-stats trust-levels">
|
|
<table class="table table-condensed table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th> </th>
|
|
<th>0</th>
|
|
<th>1</th>
|
|
<th>2</th>
|
|
<th>3</th>
|
|
<th>4</th>
|
|
</tr>
|
|
</thead>
|
|
{{#unless loading}}
|
|
{{ render 'admin_report_trust_levels' users_by_trust_level }}
|
|
{{/unless}}
|
|
</table>
|
|
</div>
|
|
|
|
<div class="dashboard-stats totals">
|
|
<table class="table table-condensed table-hover">
|
|
<tbody>
|
|
<tr>
|
|
<td class="title"><i class='icon icon-trophy'></i> {{i18n admin.dashboard.moderators}}</td>
|
|
<td class="value">{{moderators}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="title"><i class='icon icon-magic'></i> {{i18n admin.dashboard.admins}}</td>
|
|
<td class="value">{{admins}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="dashboard-stats">
|
|
<table class="table table-condensed table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th> </th>
|
|
<th>{{i18n admin.dashboard.reports.today}}</th>
|
|
<th>{{i18n admin.dashboard.reports.yesterday}}</th>
|
|
<th>{{i18n admin.dashboard.reports.last_7_days}}</th>
|
|
<th>{{i18n admin.dashboard.reports.last_30_days}}</th>
|
|
<th>{{i18n admin.dashboard.reports.all}}</th>
|
|
</tr>
|
|
</thead>
|
|
{{#unless loading}}
|
|
{{ render 'admin_report_counts' signups }}
|
|
{{ render 'admin_report_counts' topics }}
|
|
{{ render 'admin_report_counts' posts }}
|
|
{{ render 'admin_report_counts' likes }}
|
|
{{ render 'admin_report_counts' flags }}
|
|
{{ render 'admin_report_counts' emails }}
|
|
{{ render 'admin_report_counts' private_messages }}
|
|
{{/unless}}
|
|
</table>
|
|
</div>
|
|
|
|
<div class="dashboard-stats">
|
|
<table class="table table-condensed table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th> </th>
|
|
<th>{{i18n admin.dashboard.reports.today}}</th>
|
|
<th>{{i18n admin.dashboard.reports.yesterday}}</th>
|
|
<th>{{i18n admin.dashboard.reports.7_days_ago}}</th>
|
|
<th>{{i18n admin.dashboard.reports.30_days_ago}}</th>
|
|
</tr>
|
|
</thead>
|
|
{{#unless loading}}
|
|
{{ render 'admin_report_visits' visits }}
|
|
{{/unless}}
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="dashboard-right">
|
|
{{ render admin_github_commits githubCommits }}
|
|
</div>
|
|
<div class='clearfix'></div>
|