comparison gpp/templates/core/admin_dashboard.html @ 139:e04d91babfcf

Close #30. Create an admin dashboard to see pending content and requests for admin action.
author Brian Neal <bgneal@gmail.com>
date Sun, 29 Nov 2009 22:33:15 +0000
parents
children 861f7d5f1b23
comparison
equal deleted inserted replaced
138:7ea842744a57 139:e04d91babfcf
1 <div class="module">
2 <table summary="Admin Dashboard">
3 <caption>Admin Dashboard</caption>
4 <tr>
5 <th><a href="/admin/forums/flaggedpost/">Flagged Posts</a></th>
6 <td>{{ flagged_posts }}</td>
7 </tr>
8 <tr>
9 <th><a href="/admin/comments/commentflag/">Flagged Comments</a></th>
10 <td>{{ flagged_comments }}</td>
11 </tr>
12 <tr>
13 <th><a href="/admin/bio/userprofileflag/">Flagged Profiles</a></th>
14 <td>{{ flagged_profiles }}</td>
15 </tr>
16 <tr>
17 <th><a href="/admin/gcalendar/event/">Calendar Requests</a></th>
18 <td>{{ event_requests }}</td>
19 </tr>
20 <tr>
21 <th><a href="/admin/news/pendingstory/">New Stories</a></th>
22 <td>{{ new_stories }}</td>
23 </tr>
24 <tr>
25 <th><a href="/admin/downloads/download/">New Downloads</a></th>
26 <td>{{ new_downloads }}</td>
27 </tr>
28 <tr>
29 <th><a href="/admin/weblinks/link/">New Links</a></th>
30 <td>{{ new_links }}</td>
31 </tr>
32 </table>
33 </div>