summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdolfo Fitoria <adolfo.fitoria@gmail.com>2011-10-11 15:39:17 -0300
committerAdolfo Fitoria <adolfo.fitoria@gmail.com>2011-10-11 15:39:17 -0300
commit03edcb6fdbac1486cf9edfaa29b6b0db028917f4 (patch)
tree30621f9291b8573c851a572107feed0ac23a0047
parentf93a95aa2378cce58c44d06fbd169099ce6f1630 (diff)
downloadaskbot-03edcb6fdbac1486cf9edfaa29b6b0db028917f4.tar.gz
askbot-03edcb6fdbac1486cf9edfaa29b6b0db028917f4.tar.bz2
askbot-03edcb6fdbac1486cf9edfaa29b6b0db028917f4.zip
fixed a bug in secondary header
-rw-r--r--askbot/skins/default/templates/blocks/secundary_header.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/askbot/skins/default/templates/blocks/secundary_header.html b/askbot/skins/default/templates/blocks/secundary_header.html
index 0d588627..bce63cec 100644
--- a/askbot/skins/default/templates/blocks/secundary_header.html
+++ b/askbot/skins/default/templates/blocks/secundary_header.html
@@ -6,12 +6,12 @@
<a id="home-button" href="{% url questions %}"></a>
<div id="scope-wrapper">
<a class="scope-selector {% if scope == 'all' %}on{% endif %}"
- href="?scope=all" title="{% trans %}see all questions{% endtrans %}">ALL</a>
+ href="{% url questions %}?scope=all" title="{% trans %}see all questions{% endtrans %}">ALL</a>
<a class="scope-selector {% if scope == 'unanswered' %}on{% endif %}"
- href="?scope=unanswered&amp;sort=answers-asc" title="{% trans %}see unanswered questions{% endtrans %}">UNANSWERED</a>
+ href="{% url questions %}?scope=unanswered&amp;sort=answers-asc" title="{% trans %}see unanswered questions{% endtrans %}">UNANSWERED</a>
{% if request.user.is_authenticated() %}
<a class="scope-selector {% if scope == 'favorite' %}on{% endif %}"
- href="?scope=favorite" title="{% trans %}see your followed questions{% endtrans %}">FOLLOWED</a>
+ href="{% url questions %}?scope=favorite" title="{% trans %}see your followed questions{% endtrans %}">FOLLOWED</a>
{% endif %}
{% include "blocks/input_bar.html" %} {# include search form block #}