Consistencify sidebar bits (same headers and such)
authorJef van Schendel <mail@jefvanschendel.nl>
Sun, 12 Feb 2012 15:28:42 +0000 (16:28 +0100)
committerJef van Schendel <mail@jefvanschendel.nl>
Sun, 12 Feb 2012 15:28:42 +0000 (16:28 +0100)
mediagoblin/templates/mediagoblin/utils/exif.html
mediagoblin/templates/mediagoblin/utils/geolocation_map.html
mediagoblin/templates/mediagoblin/utils/license.html
mediagoblin/templates/mediagoblin/utils/tags.html

index 0dd187f2ac5480bf87dda7e992ce451f0b5ab602..bd2e3307016750a96c43037b4a5155f67841b254 100644 (file)
@@ -20,7 +20,7 @@
   {% if media.media_data.has_key('exif')
         and app_config['exif_visible']
         and media.media_data.exif.has_key('useful') %}
-    <h4>EXIF</h4>
+    <h3 class="sidedata">EXIF</h3>
     <table>
       {% for key, tag in media.media_data.exif.useful.items() %}
         <tr>
index c1909ae50b08a1fb45075b1ec2abbb381d820a3b..118d0e624d4537bda1ec93a6410ec26c72e171f3 100644 (file)
@@ -20,7 +20,7 @@
   {% if media.media_data.has_key('gps')
         and app_config['geolocation_map_visible']
         and media.media_data.gps %}
-    <h4>Map</h4>
+    <h3 class="sidedata">Location</h3>
     <div>
       {% set gps = media.media_data.gps %}
         <div id="tile-map" style="width: 100%; height: 196px;">
index 2438ed4e6324d4bc270c879ae4ddaf1faa6e22c7..ab157508f2e0f2bc33529c5007cf030a5efb3dbb 100644 (file)
@@ -17,8 +17,8 @@
 #}
 
 {% block license_content -%}
+  <h3 class="sidedata">{% trans %}License{% endtrans %}</h3>
   <p>
-    {% trans %}License:{% endtrans %}
     {% if media.license %}
       <a href="{{ media.license }}">{{ media.get_license_data().abbreviation }}</a>
     {% else %}
index 6408102dd8155f4688933c73a7fbe7f4e73a34d8..bcf3b5fdf90274c1c5dd10bcfb4a618bb7ce8c2f 100644 (file)
 #}
 
 {% block tags_content -%}
-  <p>{% trans %}View more media tagged with{% endtrans %}
+  <h3 class="sidedata">Tagged with</h3>
+  <p>
     {% for tag in media.tags %}
       {% if loop.last %}
         {# the 'and' should only appear if there is more than one tag #}
         {% if media.tags|length > 1 %}
-          {% trans %}or{% endtrans %}
+          &middot;
         {% endif %}
         <a href="{{ request.urlgen(
                           'mediagoblin.listings.tags_listing',
-                          tag=tag['slug']) }}">{{ tag['name'] }}</a>.
+                          tag=tag['slug']) }}">{{ tag['name'] }}</a>
       {% elif loop.revindex == 2 %}
         <a href="{{ request.urlgen(
                           'mediagoblin.listings.tags_listing',
@@ -34,7 +35,7 @@
       {% else %}
         <a href="{{ request.urlgen(
                           'mediagoblin.listings.tags_listing',
-                          tag=tag['slug']) }}">{{ tag['name'] }}</a>
+                          tag=tag['slug']) }}">{{ tag['name'] }}</a> &middot;
       {% endif %}
     {% endfor %}
   </p>