diff --git a/app/YtManagerApp/templates/YtManagerApp/video.html b/app/YtManagerApp/templates/YtManagerApp/video.html index 6e5b359..d5b1383 100644 --- a/app/YtManagerApp/templates/YtManagerApp/video.html +++ b/app/YtManagerApp/templates/YtManagerApp/video.html @@ -4,24 +4,48 @@ {% load ratings %} {% block body %} -
- -

{{ object.name }}

-
- -
+
+

{{ object.name }}

+
+
+ + {% if object.watched %} + + + + {% else %} + + + + {% endif %} + {% if object.downloaded_path %} + + + + {% else %} + + + + {% endif %} +
+
+
+
{% if video_mime != None %} -
+
+
+

{{ object.views | intcomma }} views @@ -32,51 +56,11 @@ {% starrating object.rating %}

-
{{ object.description | linebreaks | urlize }}
- -
- -
-
Manage video
-

- - Watch on YouTube - -

- - {% if object.watched %} -

- - Mark not watched - -

- {% else %} -

- - Mark watched - -

- {% endif %} - - {% if object.downloaded_path %} -

- - Delete downloaded - -

- {% else %} -

- - Download - -

- {% endif %}
-
{% endblock %}