]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/skins/default/templates/node/contributors_info.html
Applies some of the Justin Grant's patches.
[osqa.git] / forum / skins / default / templates / node / contributors_info.html
index 0c40cf2762d369a9d460d8ef9bf80f1f8cdcc4ba..3ed461b95d51a68e31b87a8ea41f7d66164aac1a 100644 (file)
@@ -1,15 +1,15 @@
 {% load extra_tags %}
-<div class='post-update-info'>
+<div class='post-update-info post-update-info-user'>
     <p style="line-height:12px;">
         {{ node_verb }}
         <strong>{% diff_date node.added_at %}</strong>
     </p>
     {% gravatar node.author 32 %}
-    <p><a {% if node.author.is_suspended %}class="suspended-user" {% endif %}href="{{ node.author.get_profile_url }}">{{ node.author.username }}</a><br/>
+    <p><a {% if node.author.is_suspended %}class="suspended-user" {% endif %}href="{{ node.author.get_profile_url }}">{{ node.author.decorated_name }}</a><br/>
     {% get_score_badge node.author %}</p>
 </div>
 {% if node.last_edited %}
-    <div class='post-update-info'>
+    <div class='post-update-info post-update-info-edited'>
         <p style="line-height:12px;">
             <a href="{{ node.get_revisions_url }}">
                 {{ node.last_edited.verb }}
@@ -18,7 +18,7 @@
         </p>
         {% ifnotequal node.author node.last_edited.by %}
             {% gravatar node.last_edited.by 32 %}
-            <p><a {% if node.last_edited.by.is_suspended %}class="suspended-user" {% endif %}href="{{ node.last_edited.by.get_profile_url }}">{{ node.last_edited.by.username }}</a><br/>
+            <p><a {% if node.last_edited.by.is_suspended %}class="suspended-user" {% endif %}href="{{ node.last_edited.by.get_profile_url }}">{{ node.last_edited.by.decorated_name }}</a><br/>
             {% get_score_badge node.last_edited.by %}</p>
         {% endifnotequal %}
     </div>