9b349258143a7cd57a5e59be561a9914352ebfaf
[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 %}" class="btn btn-sm btn-secondary"><small>{% trans "Image settings" %}</small></a></td>
7     <td><a class="btn btn-primary" target="_blank"
8                 href="{% url 'wiki_img_editor' image.slug %}">
9                     {% trans "Edit:" %}
10                 {{ image.title }}</a></td>
11     <td>{% if image.stage %}
12         {{ image.stage }}
13     {% else %}–
14     {% endif %}</td>
15     <td class='user-column'>{% if image.user %}<a href="{% url 'catalogue_user' image.user.username %}">{{ image.user|username }}</a>{% endif %}</td>
16     <td>
17         {% if image.published %}
18         <div><small>{% trans "published" %}</small></div>
19         {% endif %}
20         {% if image.new_publishable %}
21         <div><small>{% trans "publishable" %}</small></div>
22         {% endif %}
23         {% if image.changed %}
24         <div><small>{% trans "changed" %}</small></div>
25         {% endif %}
26     </td>
27     <td>{{ image.project.name }}</td>
28 </tr>