Django 3
[redakcja.git] / src / catalogue / templates / catalogue / image_detail.html
1 {% extends "catalogue/base.html" %}
2 {% load book_list i18n %}
3 {% load bootstrap4 %}
4
5
6 {% block titleextra %}{{ object.title }}{% endblock %}
7
8
9 {% block content %}
10 <div class="card mt-4">
11
12         <div class="card-header">
13 <h1>{{ object.title }}</h1>
14         </div>
15         <div class="card-body">
16
17
18 {% if editable %}<form method='POST'>{% csrf_token %}{% endif %}
19     {% bootstrap_form form %}
20     {% if editable %}
21     {% buttons %}
22         <button class="btn btn-primary" type="submit">{% trans "Save" %}</button>
23     {% endbuttons %}
24     {% endif %}
25 </tbody></table>
26 {% if editable %}</form>{% endif %}
27
28         </div>
29 </div>
30
31
32 <div class='card mt-4'>
33         <div class="card-header">
34     <h2>{% trans "Editor" %}</h2>
35         </div>
36         <div class="card-body">
37
38     <p><a class="btn btn-primary" href="{% url 'wiki_img_editor' object.slug %}">{% trans "Proceed to the editor." %}</a></p>
39 </div>
40 </div>
41
42
43
44 <div class='card mt-4'>
45         <div class="card-header">
46
47 <h2>{% trans "Publication" %}</h2>
48         </div>
49         <div class="card-body">
50
51 <p>{% trans "Last published" %}: 
52     {% if object.last_published %}
53         {{ object.last_published }}
54     {% else %}
55         &mdash;
56     {% endif %}
57 </p>
58
59 {% if publishable %}
60     {% if user.is_authenticated %}
61         <!--
62         Angel photos:
63         Angels in Ely Cathedral (http://www.flickr.com/photos/21804434@N02/4483220595/) /
64         mira66 (http://www.flickr.com/photos/21804434@N02/) /
65         CC BY 2.0 (http://creativecommons.org/licenses/by/2.0/)
66         -->
67         <form method="POST" action="{% url 'catalogue_publish_image' object.slug %}">{% csrf_token %}
68             <!--img src="{{ STATIC_URL }}img/angel-left.png" style="vertical-align: middle" /-->
69             <button id="publish-button" type="submit">
70                 <span>{% trans "Publish" %}</span></button>
71             <!--img src="{{ STATIC_URL }}img/angel-right.png" style="vertical-align: middle" /-->
72             </form>
73     {% else %}
74         <a href="{% url 'cas_ng_login' %}">{% trans "Log in to publish." %}</a>
75     {% endif %}
76 {% else %}
77     <p>{% trans "This book can't be published yet, because:" %}</p>
78     <ul><li>{{ publishable_error }}</li></ul>
79 {% endif %}
80
81 </div>
82 </div>
83
84
85 {% endblock content %}