mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
18 lines
407 B
Handlebars
18 lines
407 B
Handlebars
<h3>{{i18n "admin.reports.title"}}</h3>
|
|
|
|
<ul class="reports-list">
|
|
{{#each model as |report|}}
|
|
<li class="report">
|
|
{{#link-to 'adminReports.show' report.type}}
|
|
<h4 class="report-title">{{report.title}}</h4>
|
|
{{/link-to}}
|
|
|
|
{{#if report.description}}
|
|
<p class="report-description">
|
|
{{report.description}}
|
|
</p>
|
|
{{/if}}
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|