Merge with master.
[redakcja.git] / apps / catalogue / templates / catalogue / image_short.html
1 {% load i18n %}
2
3 <tr>
4     <td><a href="{% url 'catalogue_image' image.slug %}" title='{% trans "Image settings" %}'>[B]</a></td>
5     <td><a target="_blank"
6                 href="{% url 'wiki_img_editor' image.slug %}">
7                 {{ image.title }}</a></td>
8     <td>{% if image.stage %}
9         {{ image.stage }}
10     {% else %}–
11     {% endif %}</td>
12     <td class='user-column'>{% if image.user %}<a href="{% url 'catalogue_user' image.user.username %}">{{ image.user.first_name }} {{ image.user.last_name }}</a>{% endif %}</td>
13     <td>
14         {% if image.published %}P{% endif %}
15         {% if image.new_publishable %}p{% endif %}
16         {% if image.changed %}+{% endif %}
17     </td>
18 </tr>