summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-09-03 20:11:33 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-09-03 20:11:33 -0400
commitb1646d419b1cdf2447acfdf32cceacddf7ee4c43 (patch)
treea916320563e47e3ddca2a1837b87fd5093ac04f8
parent7c0fbd3e2fb6c097b3278cac9c4f57408383a080 (diff)
downloadaskbot-b1646d419b1cdf2447acfdf32cceacddf7ee4c43.tar.gz
askbot-b1646d419b1cdf2447acfdf32cceacddf7ee4c43.tar.bz2
askbot-b1646d419b1cdf2447acfdf32cceacddf7ee4c43.zip
removed the groups listing from the show_users page, because it is redundant with the groups nav in the header
-rw-r--r--askbot/skins/default/media/style/style.less1
-rw-r--r--askbot/skins/default/templates/users.html6
2 files changed, 3 insertions, 4 deletions
diff --git a/askbot/skins/default/media/style/style.less b/askbot/skins/default/media/style/style.less
index d3471460..d64bd6c8 100644
--- a/askbot/skins/default/media/style/style.less
+++ b/askbot/skins/default/media/style/style.less
@@ -1308,7 +1308,6 @@ ul#related-tags li {
}
h1 {
float: left;
- padding-top: 7px;
}
}
diff --git a/askbot/skins/default/templates/users.html b/askbot/skins/default/templates/users.html
index 183381d4..a159dee1 100644
--- a/askbot/skins/default/templates/users.html
+++ b/askbot/skins/default/templates/users.html
@@ -16,7 +16,7 @@
</h1>
<div class="tabBar">
<div class="tabsA">
- {% if settings.GROUPS_ENABLED and user_groups %}
+ {#% if settings.GROUPS_ENABLED and user_groups %}
<span class="label">{% trans %}Select/Sort by &raquo;{% endtrans %}</span>
{% for a_group in user_groups %}
<a
@@ -25,9 +25,9 @@
title="{% trans name=a_group.name|escape %}people in group {{name}}{% endtrans %}"
><span>{{ a_group.name|replace('-',' ')|escape }}</span></a>
{% endfor %}
- {% else %}
+ {% else %#}
<span class="label">{% trans %}Sort by &raquo;{% endtrans %}</span>
- {% endif %}
+ {#% endif %#}
{% if settings.KARMA_MODE == 'public' %}
<a
id="sort_reputation"