diff options
author | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2010-05-31 22:31:20 -0700 |
---|---|---|
committer | fadeev <fadeev@bacchus.bio.uci.edu> | 2010-05-31 22:32:25 -0700 |
commit | 5dfebd5164518572b9f1c9822990ee476854304d (patch) | |
tree | 59367e36177a8bfe58e0ff59453cb4ec1c6b334e /forum/skins/default/templates/instant_notification.html | |
parent | f5cd9612ec2d58d3f2da218a254ad011052b46ce (diff) | |
download | askbot-5dfebd5164518572b9f1c9822990ee476854304d.tar.gz askbot-5dfebd5164518572b9f1c9822990ee476854304d.tar.bz2 askbot-5dfebd5164518572b9f1c9822990ee476854304d.zip |
fixed some bugs in comment posting and made progress in instant notifications
Diffstat (limited to 'forum/skins/default/templates/instant_notification.html')
-rw-r--r-- | forum/skins/default/templates/instant_notification.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/forum/skins/default/templates/instant_notification.html b/forum/skins/default/templates/instant_notification.html index 3f4da467..856e6676 100644 --- a/forum/skins/default/templates/instant_notification.html +++ b/forum/skins/default/templates/instant_notification.html @@ -14,8 +14,7 @@ email_settings_url - url of user's email settings {% endcomment %} {% load i18n %} {% load smart_if %} -{% blocktrans with receiving_user.get_best_name as user_name %}Dear {{user_name}},{% endblocktrans %} - +{% blocktrans with receiving_user.username as user_name %}Dear {{user_name}},{% endblocktrans %} {% if update_type == 'question_comment' or update_type == 'answer_comment' %} {% blocktrans with post_author.get_profile_link as author_link and related_origin_post.get_absolute_url as origin_post_url and related_origin_post.title as origin_post_title %} {{author_link}} has left a new <a href="{{update_url}}">comment</a> |