2 # GNU MediaGoblin -- federated, autonomous media hosting
3 # Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU Affero General Public License for more details.
15 # You should have received a copy of the GNU Affero General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 {% extends "mediagoblin/base.html" %}
21 {% trans %}Media processing panel{% endtrans %} — {{ super() }}
24 {% block mediagoblin_content %}
26 <h1>{% trans %}Media processing panel{% endtrans %}</h1>
29 {% trans %}Here you can track the state of media being processed on this instance.{% endtrans %}
32 <h2>{% trans %}Media in-processing{% endtrans %}</h2>
34 {% if processing_entries.count() %}
35 <table class="media_panel processing">
40 <th>When submitted</th>
41 <th>Transcoding progress</th>
43 {% for media_entry in processing_entries %}
45 <td>{{ media_entry.id }}</td>
46 <td>{{ media_entry.get_uploader.username }}</td>
47 <td>{{ media_entry.title }}</td>
48 <td>{{ media_entry.created.strftime("%F %R") }}</td>
49 {% if media_entry.transcoding_progress %}
50 <td>{{ media_entry.transcoding_progress }}%</td>
58 <p><em>{% trans %}No media in-processing{% endtrans %}</em></p>
61 <h2>{% trans %}These uploads failed to process:{% endtrans %}</h2>
62 {% if failed_entries.count() %}
64 <table class="media_panel failed">
69 <th>When submitted</th>
70 <th>Reason for failure</th>
71 <th>Failure metadata</th>
73 {% for media_entry in failed_entries %}
75 <td>{{ media_entry.id }}</td>
76 <td>{{ media_entry.get_uploader.username }}</td>
77 <td>{{ media_entry.title }}</td>
78 <td>{{ media_entry.created.strftime("%F %R") }}</td>
79 {% if media_entry.get_fail_exception() %}
80 <td>{{ media_entry.get_fail_exception().general_message }}</td>
81 <td>{{ media_entry.fail_metadata }}</td>
90 <p><em>{% trans %}No failed entries!{% endtrans %}</em></p>
92 <h2>{% trans %}Last 10 successful uploads{% endtrans %}</h2>
93 {% if processed_entries.count() %}
95 <table class="media_panel processed">
102 {% for media_entry in processed_entries %}
104 <td>{{ media_entry.id }}</td>
105 <td>{{ media_entry.get_uploader.username }}</td>
106 <td><a href="{{ media_entry.url_for_self(request.urlgen) }}">{{ media_entry.title }}</a></td>
107 <td><span title='{{ media_entry.created.strftime("%F %R") }}'>{{ timesince(media_entry.created) }}</span></td>
112 <p><em>{% trans %}No processed entries, yet!{% endtrans %}</em></p>