summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-07-29 15:38:27 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-07-29 15:38:27 -0400
commit198be350a2581f509973623e93a77e367cdec689 (patch)
treee54c6407c99c38dc2b92332d7e28ca98c037f44b
parentcb6950176f3d2ad56e9e50e68743435b235debcd (diff)
downloadaskbot-198be350a2581f509973623e93a77e367cdec689.tar.gz
askbot-198be350a2581f509973623e93a77e367cdec689.tar.bz2
askbot-198be350a2581f509973623e93a77e367cdec689.zip
fixed class name in the meta nav for groups
-rw-r--r--askbot/templates/widgets/meta_nav.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/askbot/templates/widgets/meta_nav.html b/askbot/templates/widgets/meta_nav.html
index 20c22491..5392fe12 100644
--- a/askbot/templates/widgets/meta_nav.html
+++ b/askbot/templates/widgets/meta_nav.html
@@ -7,7 +7,8 @@
{% if settings.GROUPS_ENABLED %}
<span class="dropdown">
<a
- id="navGroups" class='{% if active_tab == 'groups' %}"on"{% endif %}'
+ id="navGroups"
+ {% if active_tab == 'groups' %}class="on"{% endif %}
href="{% url groups %}" data-target="#" >
{% trans %}people & groups{% endtrans %}
</a>