c67edea47c3da2e16dc9a38a863d9a96127f30eb
[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 <h2>{% trans "Publishing" %}</h2>
8
9 {% if audiobook.mp3_status or audiobook.ogg_status %}
10
11 <h2>{% trans "Publishing pending" %}</h2>
12
13 <form method="post" action="{% url cancel_publishing audiobook.id %}">
14     {% csrf_token %}
15     <input type="submit" value="{% trans "Cancel publishing" %}" />
16 </form>
17
18
19 {% if audiobook.mp3_status %}
20     <hr/>
21     <h2>MP3</h2>
22
23     {% tags_table audiobook.mp3_tags.tags %}
24
25     <p>Status: <b>{{ audiobook.get_mp3_status_display }}</b></p>
26 {% endif %}
27
28 {% if audiobook.ogg_status %}
29     <hr/>
30     <h2>Ogg Vorbis</h2>
31
32     {% tags_table audiobook.ogg_tags.tags %}
33
34     <p>Status: <b>{{ audiobook.get_ogg_status_display }}</b></p>
35 {% endif %}
36
37
38
39
40 {% else %}
41     <form method="post" action="{% url publish audiobook.id %}">
42     <table class='tags'>
43         {% tags_table audiobook.new_publish_tags 0 %}
44
45         {% csrf_token %}
46         <tr><th></th><td><input type="submit" value="{% trans "Publish" %}" /></td></tr>
47     </table>
48     </form>
49 {% endif %}
50
51 <hr/>
52 {% if audiobook.mp3_published %}
53     <h2>Published MP3</h2>
54     <a href="{{ audiobook.mp3_file.url }}">{{ audiobook.mp3_published }}</a>
55     {% tags_table audiobook.mp3_published_tags.tags %}
56 {% else %}<p>MP3 file hasn't been published yet.</p>
57 {% endif %}
58
59 <hr/>
60 {% if audiobook.ogg_published %}
61     <h2>Published Ogg Vorbis</h2>
62     <a href="{{ audiobook.ogg_file.url }}">{{ audiobook.ogg_published }}</a>
63     {% tags_table audiobook.ogg_published_tags.tags %}
64 {% else %}Ogg Vorbis file hasn't been published yet.
65 {% endif %}
66
67
68
69
70 <hr />
71
72
73
74
75 <h2>{% trans "Update tags" %}</h2>
76
77 Last modified: {{ audiobook.modified }}
78
79 {% multiple_tags_table tags %}
80
81
82
83 <form method='post' action='.'>
84     {% csrf_token %}
85     <table>
86         {{ form.as_table }}
87         <td></td><td><input type="submit" value='{% trans "Commit" %}' /></td></td>
88     </table>
89 </form>
90
91
92
93
94 {% endblock %}