changeset 931:1354c3d651eb

Fix admin dashboard for Django 1.7.7 upgrade.
author Brian Neal <bgneal@gmail.com>
date Wed, 15 Apr 2015 20:27:05 -0500
parents 1b96b7d12269
children 92b4baa0383b
files sg101/templates/core/admin_dashboard.html
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/sg101/templates/core/admin_dashboard.html	Wed Apr 15 20:24:00 2015 -0500
+++ b/sg101/templates/core/admin_dashboard.html	Wed Apr 15 20:27:05 2015 -0500
@@ -1,5 +1,6 @@
 {% 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 or flagged_shouts or broken_links or flagged_msgs or new_bands %}
+<div class="clear">
 <ul id="dashboard-list">
 {% if flagged_posts %}
 <li><a href="/admin/forums/flaggedpost/">Posts</a>: {{ flagged_posts }}</li>
@@ -35,5 +36,6 @@
 <li><a href="/admin/bandmap/bandentry/?is_approved__exact=0">Band Map</a>: {{ new_bands }}</li>
 {% endif %}
 </ul>
+</div>
 {% endif %}
 {% endif %}