summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/tags/recent_comments.html
blob: 9e87c6fcbad1f77fb405a32b3a54c624d273b30d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% load i18n %}

<ul>
  {% for comment in comments %}
  <li>
    {% with comment.content_object as nodetype %}
    {{ comment.user_name }} {% trans "on" %}
    <a href="{{ nodetype.get_absolute_url }}#comment_{{ comment.pk }}" 
       title="{% trans "Comment on" %} {{ nodetype.title }}">
      {{ nodetype.title }}
    </a>
    {% endwith %}
  </li>
  {% empty %}
  <li>
    {% trans "No comments yet." %}
  </li>  
  {% endfor %}
</ul>