diff -r 1d314f629611 -r b7a092a52eae src/cm/templates/site/macros/text_comments.html --- a/src/cm/templates/site/macros/text_comments.html Tue Jul 31 16:37:23 2012 +0200 +++ b/src/cm/templates/site/macros/text_comments.html Mon Aug 06 13:42:15 2012 +0200 @@ -1,30 +1,24 @@ {% load com %} {% load i18n %} -
-{% for comment in comments %} - - - - - -
- +
+
+{% for comment in comments %} +
{% if comment.is_reply %} ({{ comment.num }}) {% else %} [{{ comment.num }}] {% endif %} -
- {{ comment.title }} -
- {% blocktrans with comment.get_name as name and comment.created|local_date:tz as date %}by {{ name }} on {{ date }}{% endblocktrans %} -
- {{ comment.content }} - {% if comment.tags %} -
 
- tags: {{ comment.tags }} - {% endif %} -
-
+
+
+

+ {{ comment.title }}
+ {% blocktrans with comment.get_name as name and comment.created|local_date:tz as date %}by {{ name }} on {{ date }}{% endblocktrans %}
+ {{ comment.content }} +

+ {% if comment.tags %} +

tags: {{ comment.tags }}

+ {% endif %} +
{% endfor %}