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

<ul>
  {% for linkback in linkbacks %}
  <li>
    {% with linkback.content_object as nodetype %}
    <a href="{{ linkback.url }}">{{ linkback.user_name }}</a>
    {% trans "in" %}
    <a href="{{ nodetype.get_absolute_url }}#{{ linkback.flags.all.0.flag }}_{{ linkback.pk }}"
       title="{% trans "Linkback on" %} {{ nodetype.title }}">
      {{ nodetype.title }}
    </a>
    {% endwith %}
  </li>
  {% empty %}
  <li>
    {% trans "No linkbacks yet." %}
  </li>
  {% endfor %}
</ul>