Mercurial > public > sg101
view gpp/templates/core/admin_dashboard.html @ 149:ab7830b067b3
Implement ticket #40. Added a simple way to search for usernames and then view their profile. Moved this ajax username search feature out of the messages app and into core.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Mon, 14 Dec 2009 05:07:28 +0000 |
parents | 023132c90021 |
children | e1d1a70d312d |
line wrap: on
line source
{% if user.is_staff %} {% if flagged_posts or flagged_comments or flagged_profiles or event_requests or new_stories or new_downloads or new_links %} <ul id="dashboard-list"> {% if flagged_posts %} <li><a href="/admin/forums/flaggedpost/">Posts</a>: {{ flagged_posts }}</li> {% endif %} {% if flagged_comments %} <li><a href="/admin/comments/commentflag/">Comments</a>: {{ flagged_comments }}</li> {% endif %} {% if flagged_profiles %} <li><a href="/admin/bio/userprofileflag/">Profiles</a>: {{ flagged_profiles }}</li> {% endif %} {% if event_requests %} <li><a href="/admin/gcalendar/event/">Calendar</a>: {{ event_requests }}</li> {% endif %} {% if new_stories %} <li><a href="/admin/news/pendingstory/">News</a>: {{ new_stories }}</li> {% endif %} {% if new_downloads %} <li><a href="/admin/downloads/download/">Downloads</a>: {{ new_downloads }}</li> {% endif %} {% if new_links %} <li><a href="/admin/weblinks/link/">Links</a>: {{ new_links }}</li> {% endif %} </ul> {% endif %} {% endif %}