diff options
author | Adolfo Fitoria <fitoria@fitoria-laptop.(none)> | 2009-08-17 09:55:49 -0600 |
---|---|---|
committer | Adolfo Fitoria <fitoria@fitoria-laptop.(none)> | 2009-08-17 09:55:49 -0600 |
commit | 1bc0d490820c4587a8902747e8516aa6ae98a515 (patch) | |
tree | 5c25eda788a6569cb38b6877b103c0787a7a6c0e /templates | |
parent | 09ab93ddb0b7ba67b27c6eabba62a2c123558dc8 (diff) | |
download | askbot-1bc0d490820c4587a8902747e8516aa6ae98a515.tar.gz askbot-1bc0d490820c4587a8902747e8516aa6ae98a515.tar.bz2 askbot-1bc0d490820c4587a8902747e8516aa6ae98a515.zip |
fixing question template bug for closed questions
Diffstat (limited to 'templates')
-rw-r--r-- | templates/question.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/question.html b/templates/question.html index 66713342..7f1ab3a5 100644 --- a/templates/question.html +++ b/templates/question.html @@ -257,9 +257,9 @@ </table> {% if question.closed %} <div class="question-status" style="margin-bottom:15px"> - <h3>{% blocktrans %}The question has been closed for the following reason "{{ question.get_close_reason_display }}" by{% endblocktrans %} + <h3>{% trans "The question has been closed for the following reason" %} "{{ question.get_close_reason_display }}" {% trans "by"%} <a href="{{ question.closed_by.get_profile_url }}">{{ question.closed_by.username }}</a> - {% blocktrans %}close date {{question.closed_at}}{% endblocktrans %}</h3> + {% blocktrans %}close date {% endblocktrans %}{{question.closed_at|date:"d-m-Y H:i"}}</h3> </div> {% endif %} |