Update admin dashboard views now that ember lets us render the same view multiple times with different models

This commit is contained in:
Neil Lalonde
2013-03-22 14:31:40 -04:00
parent 3d4fb43c73
commit ab412dd8b4
7 changed files with 7 additions and 27 deletions

View File

@@ -93,12 +93,12 @@
</tr>
</thead>
{{#unless loading}}
{{ render 'admin_report_signups' signups }}
{{ render 'admin_report_topics' topics }}
{{ render 'admin_report_posts' posts }}
{{ render 'admin_report_likes' likes }}
{{ render 'admin_report_flags' flags }}
{{ render 'admin_report_emails' emails }}
{{ 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 }}
{{/unless}}
</table>
</div>