01847a64ec38484d9be4c4da748e9a089c8c9a96
[audio.git] / apps / archive / templates / archive / file_managed.html
1 {% extends "archive/base.html" %}
2 {% load i18n %}
3 {% load tags %}
4
5 {% block content %}
6
7 <p>Plik źródłowy: <a href='{% url download audiobook.id %}'>{{ path }}</a>
8 (sha1: <tt>{{ audiobook.source_sha1 }}</tt>).
9 </p>
10
11 <h2>{% trans "Publishing" %}</h2>
12
13 {% if audiobook.mp3_status or audiobook.ogg_status %}
14
15 <h2>{% trans "Publishing pending" %}</h2>
16
17 <form method="post" action="{% url cancel_publishing audiobook.id %}">
18     {% csrf_token %}
19     <input type="submit" value="{% trans "Cancel publishing" %}" />
20 </form>
21
22
23 {% if audiobook.mp3_status %}
24     <hr/>
25     <h2>MP3</h2>
26
27     {% tags_table audiobook.mp3_tags.tags %}
28
29     <p>Status: <b>{{ audiobook.get_mp3_status_display }}</b></p>
30 {% endif %}
31
32 {% if audiobook.ogg_status %}
33     <hr/>
34     <h2>Ogg Vorbis</h2>
35
36     {% tags_table audiobook.ogg_tags.tags %}
37
38     <p>Status: <b>{{ audiobook.get_ogg_status_display }}</b></p>
39 {% endif %}
40
41
42
43
44 {% else %}
45     <table class='tags'>
46         {% tags_table audiobook.new_publish_tags 0 %}
47         <tr><th></th><td>
48
49             <form method="post" action="{% url publish audiobook.id %}">
50                 {% csrf_token %}
51                 <input type="submit" value="{% trans "Publish" %}" />
52             </form>
53
54             {% if not audiobook.mp3_published or not audiobook.ogg_published %}
55             <form method="post" action="{% url convert audiobook.id %}">
56                 {% csrf_token %}
57                 <input type="submit" value="{% trans "Convert without publishing" %}" />
58             </form>
59             {% endif %}
60
61         </td></tr>
62     </table>
63 {% endif %}
64
65 <hr/>
66 {% if audiobook.mp3_file %}
67     <h2>{% trans "MP3 file" %}</h2>
68     <p><a href="{% url download audiobook.id 'mp3' %}">{% trans "Download MP3 file." %}</a></p>
69     {% if audiobook.mp3_published %}
70         <p>{% trans "Published:" %} {{ audiobook.mp3_published }}</a></p>
71         {% tags_table audiobook.mp3_published_tags.tags %}
72     {% else %}
73         <p>{% trans "Not published yet." %}</p>
74     {% endif %}
75 {% else %}
76     <p>{% trans "MP3 file hasn't been generated yet." %}</p>
77 {% endif %}
78
79 <hr/>
80 {% if audiobook.ogg_file %}
81     <h2>{% trans "Ogg Vorbis file" %}</h2>
82     <p><a href="{% url download audiobook.id 'ogg' %}">{% trans "Download Ogg Vorbis file." %}</a></p>
83     {% if audiobook.ogg_published %}
84         <p>{% trans "Published:" %} {{ audiobook.ogg_published }}</a></p>
85         {% tags_table audiobook.ogg_published_tags.tags %}
86     {% else %}
87         <p>{% trans "Not published yet." %}</p>
88     {% endif %}
89 {% else %}
90     <p>{% trans "Ogg Vorbis file hasn't been generated yet." %}</p>
91 {% endif %}
92
93
94
95
96 <hr />
97
98
99
100
101 <h2>{% trans "Update tags" %}</h2>
102
103 Last modified: {{ audiobook.modified }}
104
105 {% multiple_tags_table tags %}
106
107
108
109 <form method='post' action='.'>
110     {% csrf_token %}
111     <table>
112         {{ form.as_table }}
113         <td></td><td><input type="submit" value='{% trans "Commit" %}' /></td></td>
114     </table>
115 </form>
116
117
118
119 <hr />
120
121
122
123 <form method="post" action="{% url remove_to_archive audiobook.id %}"
124     onsubmit='return confirm("{% trans "Are you sure you want to move this audiobook to archive?" %}")'>
125     {% csrf_token %}
126     <input type="submit" value="{% trans "Remove to archive" %}" />
127 </form>
128
129
130
131 {% endblock %}