Subtitle built over attachments : working
[mediagoblin.git] / mediagoblin / templates / mediagoblin / media_displays / image.html
CommitLineData
a246ccca
JW
1{#
2# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 3# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
a246ccca
JW
4#
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.
9#
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.
14#
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/>.
17#}
18
93bdab9d 19{% extends 'mediagoblin/user_pages/media.html' %}
a122357e 20
1c2d01ae
CAW
21{% block mediagoblin_head %}
22 {{ super() }}
cac17c15 23 {% template_hook("image_head") %}
1c2d01ae
CAW
24{% endblock mediagoblin_head %}
25
a122357e 26{% block mediagoblin_sidebar %}
927be5e8
CAW
27 {{ super() }}
28 {% template_hook("image_sideinfo") %}
a122357e 29{% endblock %}
ab4cbb10
CAW
30
31{% block mediagoblin_after_added_sidebar %}
32 {% if app_config['original_date_visible'] %}
33 {% set original_date = media.media_manager.get_original_date() %}
34
35 {% if original_date %}
36 <h3>{% trans %}Created{% endtrans %}</h3>
37
38 <p><span title="{{ original_date.strftime("%I:%M%p %Y-%m-%d") }}">
39 {%- trans formatted_time=timesince(original_date) -%}
40 {{ formatted_time }} ago
41 {%- endtrans -%}
42 </span></p>
43 {%- endif %}
44 {% endif %}
45{% endblock %}
46