Rearrange source to src dir.
[redakcja.git] / src / catalogue / templates / catalogue / image_short.html
1 {% load i18n %}
2 {% load username from common_tags %}
3
4 <tr>
5     <td><input type="checkbox" name="select_chunk" value="{{image.id}}"/></td>
6     <td><a href="{% url 'catalogue_image' image.slug %}" title='{% trans "Image settings" %}'>[B]</a></td>
7     <td><a target="_blank"
8                 href="{% url 'wiki_img_editor' image.slug %}">
9                 {{ image.title }}</a></td>
10     <td>{% if image.stage %}
11         {{ image.stage }}
12     {% else %}–
13     {% endif %}</td>
14     <td class='user-column'>{% if image.user %}<a href="{% url 'catalogue_user' image.user.username %}">{{ image.user|username }}</a>{% endif %}</td>
15     <td>
16         {% if image.published %}P{% endif %}
17         {% if image.new_publishable %}p{% endif %}
18         {% if image.changed %}+{% endif %}
19     </td>
20     <td>{{ image.project.name }}</td>
21 </tr>