diff options
author | Michael Elkins <melkins@tislabs.com> | 2013-04-03 20:39:36 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2013-04-03 20:39:36 +0000 |
commit | f10d649b294eafa7f3146f81edc48aed16e7bb9d (patch) | |
tree | 44eb1ba42689c1b362818be7372d140175b29bbe | |
parent | 1b15da767d42cb4c083c28ccc5b4a64656dd2521 (diff) |
put badge inside of <a> element so it displays on the same line as the 'alert' text. needed since .nav>li>a has a "display:block" style
svn path=/branches/tk500/; revision=5262
-rw-r--r-- | rpkid/rpki/gui/app/templates/app/app_base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/gui/app/templates/app/app_base.html b/rpkid/rpki/gui/app/templates/app/app_base.html index 9c8f39bf..4fb5f731 100644 --- a/rpkid/rpki/gui/app/templates/app/app_base.html +++ b/rpkid/rpki/gui/app/templates/app/app_base.html @@ -15,7 +15,7 @@ {% if request.session.handle %} <li><a href="{% url "rpki.gui.app.views.dashboard" %}">dashboard</a></li> <li><a href="{% url "rpki.gui.app.views.route_view" %}">routes</a></li> - <li><a href="{% url "alert-list" %}">alerts</a>{% alert_count request.session.handle %}</li> + <li><a href="{% url "alert-list" %}">alerts {% alert_count request.session.handle %}</a></li> <li class="divider"></li> {% endif %} <li><a href="{% url "rpki.gui.app.views.conf_list" %}" title="select a different resource handle to manage">select identity</a></li> |