Remove /admin/dashboard page.

This page was just a combination of the forum listing and the bulk
update requests listing. It got zero hits in the last week.
This commit is contained in:
evazion
2021-01-16 03:23:57 -06:00
parent 0306cc16b9
commit 32dd14f461
7 changed files with 0 additions and 72 deletions

View File

@@ -1,27 +0,0 @@
<% page_title "Admin Dashboard" %>
<div id="c-admin-dashboards">
<div id="a-show">
<h1>Admin Dashboard</h1>
<div class="section">
<h2>Aliases</h2>
<%= render "tag_aliases/listing", :tag_aliases => @dashboard.tag_aliases %>
</div>
<div class="section">
<h2>Implications</h2>
<%= render "tag_implications/listing", :tag_implications => @dashboard.tag_implications %>
</div>
<div class="section">
<h2>Bulk Update Requests</h2>
<%= render "bulk_update_requests/listing", :bulk_update_requests => @dashboard.update_requests %>
</div>
<div class="section">
<h2>Forum Topics</h2>
<%= render "forum_topics/listing", forum_topics: @dashboard.forum_topics, read_forum_topics: @dashboard.forum_topics.read_by_user(CurrentUser.user) %>
</div>
</div>
</div>