aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvijeth-aradhya <vijthaaa@gmail.com>2017-08-22 13:35:44 +0530
committervijeth-aradhya <vijthaaa@gmail.com>2017-08-22 13:35:44 +0530
commite86e08ae741e03ff6949f9cda091318331a660bb (patch)
tree6880aa0c6ce1843c7bfe2fbb779a6b660a56c617
parentb89e12a23e55e0a1a4750e3107b114f27a0f0382 (diff)
downloadmediagoblin-e86e08ae741e03ff6949f9cda091318331a660bb.tar.lz
mediagoblin-e86e08ae741e03ff6949f9cda091318331a660bb.tar.xz
mediagoblin-e86e08ae741e03ff6949f9cda091318331a660bb.zip
Show default resolution progress in processing panel
-rw-r--r--mediagoblin/templates/mediagoblin/user_pages/processing_panel.html10
1 files changed, 9 insertions, 1 deletions
diff --git a/mediagoblin/templates/mediagoblin/user_pages/processing_panel.html b/mediagoblin/templates/mediagoblin/user_pages/processing_panel.html
index ee7b646a..287bd6f2 100644
--- a/mediagoblin/templates/mediagoblin/user_pages/processing_panel.html
+++ b/mediagoblin/templates/mediagoblin/user_pages/processing_panel.html
@@ -23,6 +23,7 @@
{% trans %}Media processing panel{% endtrans %} &mdash; {{ super() }}
{%- endblock %}
+
{% block mediagoblin_content %}
<h1>{% trans %}Media processing panel{% endtrans %}</h1>
@@ -50,7 +51,8 @@ Show:
<th width="210">Thumbnail</th>
<th>Title</th>
<th width="20%">When submitted</th>
- <th width="200">Transcoding progress</th>
+ <th width="200">Total transcoding progress</th>
+ <th width="200">Default resolution transcoding progress</th>
</tr>
{% for media_entry in entries %}
<tr>
@@ -84,6 +86,11 @@ Show:
{% else %}
<td>Unknown</td>
{% endif %}
+ {% if media_entry.main_transcoding_progress %}
+ <td>{{ media_entry.main_transcoding_progress }}%</td>
+ {% else %}
+ <td>Unknown</td>
+ {% endif %}
{% endif %}
</tr>
{% endfor %}
@@ -93,3 +100,4 @@ Show:
<p><em>{% trans %}You have not uploaded anything yet!{% endtrans %}</em></p>
{% endif %}
{% endblock %}
+