X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=mediagoblin%2Ftemplates%2Fmediagoblin%2Fuser_pages%2Fmedia.html;h=10b48296234e2dc73ac9590e3addd6908922f410;hb=8c33fc75054e66ef162675a1d424826cf2f80e76;hp=d52f544ff5d133275133b9dadd6497b67087fb74;hpb=228c4470f40d66e8b9383321d44d89e2a1c0ecad;p=mediagoblin.git diff --git a/mediagoblin/templates/mediagoblin/user_pages/media.html b/mediagoblin/templates/mediagoblin/user_pages/media.html index d52f544f..10b48296 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/media.html +++ b/mediagoblin/templates/mediagoblin/user_pages/media.html @@ -1,6 +1,6 @@ {# # GNU MediaGoblin -- federated, autonomous media hosting -# Copyright (C) 2011 MediaGoblin contributors. See AUTHORS. +# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by @@ -23,12 +23,35 @@ {% block title %}{{ media.title }} — {{ super() }}{% endblock %} {% block mediagoblin_head %} + + + + {% if app_config['geolocation_map_visible'] %} + + + + + {% endif %} {% endblock mediagoblin_head %} {% block mediagoblin_content %} -
+

+ {%- trans user_url=request.urlgen( + 'mediagoblin.user_pages.user_home', + user=media.get_uploader.username), + username=media.get_uploader.username -%} + ❖ Browsing media by {{username}} + {%- endtrans -%} +

+ {% include "mediagoblin/utils/prev_next.html" %} +
{% block mediagoblin_media %} {% set display_media = request.app.public_store.file_url( @@ -41,62 +64,49 @@ media.media_files['original']) }}"> Image for {{ media.title }} + alt="{% trans media_title=media.title -%} + Image for {{ media_title }}{% endtrans %}" /> {% else %} Image for {{ media.title }} + alt="{% trans media_title=media.title -%} + Image for {{ media_title }}{% endtrans %}" /> {% endif %} {% endblock %}

{{ media.title }}

+ {% if request.user and + (media.uploader == request.user.id or + request.user.is_admin) %} + {% set edit_url = request.urlgen('mediagoblin.edit.edit_media', + user= media.get_uploader.username, + media_id=media.id) %} + {% trans %}Edit{% endtrans %} + {% set delete_url = request.urlgen('mediagoblin.user_pages.media_confirm_delete', + user= media.get_uploader.username, + media_id=media.id) %} + {% trans %}Delete{% endtrans %} + {% endif %} {% autoescape False %}

{{ media.description_html }}

- {% endautoescape %} -

- {% trans date=media.created.strftime("%Y-%m-%d") -%} - Added on {{ date }}. - {%- endtrans %} - {% if media['uploader'] == request.user._id or - request.user['is_admin'] %} - {% set edit_url = request.urlgen('mediagoblin.edit.edit_media', - user= media.get_uploader.username, - media= media._id) %} - {% trans %}Edit{% endtrans %} - {% set delete_url = request.urlgen('mediagoblin.user_pages.media_confirm_delete', - user= media.get_uploader.username, - media= media._id) %} - {% trans %}Delete{% endtrans %} - {% endif %} -

+ {% endautoescape %} {% if comments %} -

- {% if comments.count()==1 %} - {% trans comment_count=comments.count() -%}{{ comment_count }} comment{%- endtrans %} - {% elif comments.count()>1 %} - {% trans comment_count=comments.count() -%}{{ comment_count }} comments{%- endtrans %} - {% else %} - {% trans %}No comments yet.{% endtrans %} - {% endif %} - -

{% if request.user %}
+ media_id=media.id) }}" method="POST" id="form_comment">

- {% trans %}Type your comment here. You can use Markdown for formatting.{% endtrans %} + {% trans %}You can use Markdown for formatting.{% endtrans %}

{{ wtforms_util.render_divs(comment_form) }}
@@ -107,28 +117,30 @@ {% endif %} {% for comment in comments %} {% set comment_author = comment.get_author %} - {% if pagination.active_id == comment._id %} -
+ {% if pagination.active_id == comment.id %} +
{% else %} -
+
{% endif %} -
- {% autoescape False %} - {{ comment.content_html }} - {% endautoescape %} + +
+ {% autoescape False %} + {{ comment.content_html }} + {% endautoescape %}
{% endfor %} @@ -136,37 +148,66 @@ media.url_for_self(request.urlgen)) }} {% endif %}
-
- {% trans user_url=request.urlgen( - 'mediagoblin.user_pages.user_home', - user=media.get_uploader.username), - username=media.get_uploader.username -%} -

❖ Browsing media by {{ username }}

- {%- endtrans %} - {% include "mediagoblin/utils/prev_next.html" %} +
+ {% trans date=media.created.strftime("%Y-%m-%d") -%} +

Added on

+

{{ date }}

+ {%- endtrans %} + {% if media.tags %} + {% include "mediagoblin/utils/tags.html" %} + {% endif %} + + {% if media.collections %} + {% include "mediagoblin/utils/collections.html" %} + {% endif %} + + {% include "mediagoblin/utils/license.html" %} + + {% include "mediagoblin/utils/geolocation_map.html" %} + + {% include "mediagoblin/utils/exif.html" %} + {% if media.attachment_files|count %} -

Attachments

+

{% trans %}Attachments{% endtrans %}

{% endif %} {% if app_config['allow_attachments'] - and (media.uploader == request.user._id + and request.user + and (media.uploader == request.user.id or request.user.is_admin) %} + {% if not media.attachment_files|count %} +

{% trans %}Attachments{% endtrans %}

+ {% endif %}

Add attachment + media=media.id) }}">{% trans %}Add attachment{% endtrans %}

{% endif %} - {% if media.tags %} - {% include "mediagoblin/utils/tags.html" %} + + {% if request.user %} +

+ + + +

{% endif %} + + {% block mediagoblin_sidebar %} + {% endblock %}
+
{% endblock %}