diff options
author | Bruno Sarlo <bruno@bruno-laptop.(none)> | 2009-08-09 23:52:09 -0300 |
---|---|---|
committer | Bruno Sarlo <bruno@bruno-laptop.(none)> | 2009-08-09 23:52:09 -0300 |
commit | 56529f3b93b9e7247b70cdf4efdf9c9a90deeaa1 (patch) | |
tree | 979ccea6ec95c87c06c824d35fb2371b7ffc1ee3 /templates/users_questions.html | |
parent | ab773e3548a98ba0b5af8492ac2905d7d6600578 (diff) | |
download | askbot-56529f3b93b9e7247b70cdf4efdf9c9a90deeaa1.tar.gz askbot-56529f3b93b9e7247b70cdf4efdf9c9a90deeaa1.tar.bz2 askbot-56529f3b93b9e7247b70cdf4efdf9c9a90deeaa1.zip |
Included i18n for links site-wide. Hope there is no bit left.
Diffstat (limited to 'templates/users_questions.html')
-rw-r--r-- | templates/users_questions.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/users_questions.html b/templates/users_questions.html index dfb87c8f..dd818ddb 100644 --- a/templates/users_questions.html +++ b/templates/users_questions.html @@ -23,7 +23,7 @@ <div class="favorites-empty"> </div> {% endif %} <div id="question-summary-{{question.id}}" class="question-summary narrow"> - <a style="text-decoration: none;" href="/questions/{{question.id}}/{{question.get_question_title}}"> + <a style="text-decoration: none;" href="{% url questions %}{{question.id}}/{{question.get_question_title}}"> <div class="stats"> <div class="votes"> <div class="vote-count-post">{{question.vote_count|intcomma}}</div> @@ -43,7 +43,7 @@ </a> <div class="summary"> <h3> - <a title="{{question.summary}}" href="/questions/{{question.id}}/{{question.title}}">{{question.title}}</a> + <a title="{{question.summary}}" href="{% url questions %}{{question.id}}/{{question.title}}">{{question.title}}</a> </h3> <div class="tags"> {% convert2tagname_list question %} @@ -55,7 +55,7 @@ <div class="started"> <span class="relativetime" title="{{question.last_activity_at}}">{% diff_date question.last_activity_at %}</span> {% if question.la_username %} - <a href="/users/{{question.la_user_id}}/{{question.la_username}}">{{question.la_username}}</a> {% get_score_badge_by_details question.la_user_reputation question.la_user_gold question.la_user_silver question.la_user_bronze%} + <a href="{% url users %}{{question.la_user_id}}/{{question.la_username}}">{{question.la_username}}</a> {% get_score_badge_by_details question.la_user_reputation question.la_user_gold question.la_user_silver question.la_user_bronze%} {% endif %} </div> </div> |