Remove sidedata class from html pages

This commit is contained in:
Jef van Schendel 2012-03-17 22:58:33 +01:00
parent 4c417c59b3
commit 327a1bb279
5 changed files with 5 additions and 5 deletions

View File

@ -172,7 +172,7 @@
</div> </div>
<div class="media_sidebar"> <div class="media_sidebar">
{% trans date=media.created.strftime("%Y-%m-%d") -%} {% trans date=media.created.strftime("%Y-%m-%d") -%}
<h3 class="sidedata">Added on</h3> <h3>Added on</h3>
<p>{{ date }}</p> <p>{{ date }}</p>
{%- endtrans %} {%- endtrans %}
{% if media.tags %} {% if media.tags %}

View File

@ -20,7 +20,7 @@
{% if app_config['exif_visible'] {% if app_config['exif_visible']
and media.media_data.exif is defined and media.media_data.exif is defined
and media.media_data.exif.has_key('useful') %} and media.media_data.exif.has_key('useful') %}
<h3 class="sidedata">EXIF</h3> <h3>EXIF</h3>
<table> <table>
{% for key, tag in media.media_data.exif.useful.items() %} {% for key, tag in media.media_data.exif.useful.items() %}
<tr> <tr>

View File

@ -22,7 +22,7 @@
and media.media_data.gps_latitude and media.media_data.gps_latitude
and media.media_data.gps_longitude is defined and media.media_data.gps_longitude is defined
and media.media_data.gps_longitude %} and media.media_data.gps_longitude %}
<h3 class="sidedata">{% trans %}Location{% endtrans %}</h3> <h3>{% trans %}Location{% endtrans %}</h3>
<div> <div>
{%- set lon = media.media_data.gps_longitude %} {%- set lon = media.media_data.gps_longitude %}
{%- set lat = media.media_data.gps_latitude %} {%- set lat = media.media_data.gps_latitude %}

View File

@ -17,7 +17,7 @@
#} #}
{% block license_content -%} {% block license_content -%}
<h3 class="sidedata">{% trans %}License{% endtrans %}</h3> <h3>{% trans %}License{% endtrans %}</h3>
<p> <p>
{% if media.license %} {% if media.license %}
<a href="{{ media.license }}">{{ media.get_license_data().abbreviation }}</a> <a href="{{ media.license }}">{{ media.get_license_data().abbreviation }}</a>

View File

@ -17,7 +17,7 @@
#} #}
{% block tags_content -%} {% block tags_content -%}
<h3 class="sidedata">{% trans %}Tagged with{% endtrans %}</h3> <h3>{% trans %}Tagged with{% endtrans %}</h3>
<p> <p>
{% for tag in media.tags %} {% for tag in media.tags %}
{% if loop.last %} {% if loop.last %}