diff options
author | Adolfo Fitoria <fitoria@fitoria-laptop.(none)> | 2009-08-17 09:56:13 -0600 |
---|---|---|
committer | Adolfo Fitoria <fitoria@fitoria-laptop.(none)> | 2009-08-17 09:56:13 -0600 |
commit | 5f2a6a9693292e0828a591a6d9a8ad5c7e637c84 (patch) | |
tree | 5c25eda788a6569cb38b6877b103c0787a7a6c0e /templates/question.html | |
parent | b93c3470b92370b8b010c3a96598b6f68dbd24bb (diff) | |
download | askbot-5f2a6a9693292e0828a591a6d9a8ad5c7e637c84.tar.gz askbot-5f2a6a9693292e0828a591a6d9a8ad5c7e637c84.tar.bz2 askbot-5f2a6a9693292e0828a591a6d9a8ad5c7e637c84.zip |
fixing question template bug for closed questions
Diffstat (limited to 'templates/question.html')
-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 %} |