mirror of
https://github.com/discourse/discourse.git
synced 2025-03-08 20:49:50 +00:00
This is the first iteration of an effort towards making a very good dashboard. Until we feel confident this is good, this dashboard will only be accessible through /admin/dashboard_next
29 lines
758 B
Handlebars
29 lines
758 B
Handlebars
{{plugin-outlet name="admin-dashboard-top"}}
|
|
|
|
{{#conditional-loading-spinner condition=loading}}
|
|
<div class="community-health section">
|
|
<div class="section-title">
|
|
<h2>Community health</h2>
|
|
{{period-chooser period=period action="changePeriod"}}
|
|
</div>
|
|
|
|
<div class="section-body">
|
|
<div class="charts">
|
|
{{mini-chart dataSourceName="signups" startDate=startDate endDate=endDate}}
|
|
{{mini-chart dataSourceName="topics" startDate=startDate endDate=endDate}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section-columns">
|
|
<div class="section-column">
|
|
{{mini-table dataSourceName="users_by_trust_level"}}
|
|
</div>
|
|
|
|
<div class="section-column">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{{/conditional-loading-spinner}}
|