]> git.parisson.com Git - mezzo.git/commitdiff
fix location address
authorGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Tue, 12 Apr 2016 10:45:42 +0000 (12:45 +0200)
committerGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Tue, 12 Apr 2016 10:45:42 +0000 (12:45 +0200)
app/templates/agenda/includes/event_location.html

index 20eebb9afca45eaa532020e3fe6a2b00cb55c326..5ef24917139a8c5215a54587daadc83bddcc3d7f 100644 (file)
@@ -3,14 +3,12 @@
 <div class="c-tab__content">
     <h3 class="location__title">{% if location.featured_name %}{{ location.featured_name }}{% else %}{{ location.title }}{% endif %}</h3>
         {% block event_detail_location %}
-        <p>
-            {{ location.address }}<br />
-            <a href="{{ location.link }}" target="_blank">{{ location.link }}</a><br />
-        </p>
+        <p>{{ location.address }}</p>
+        <p><a href="{{ location.link }}" target="_blank">{{ location.link }}</a></p>
+        <p>{{ location.description|safe }}</p>
         <a href="{{ location|google_nav_url }}" target="_blank" class="location__map">
           {% google_static_map location 900 300 15 %}
       </a/><br />
         <a href="{{ location|google_nav_url }}" target="_blank" class="">{% trans "Click to get the interactive map" %}</a>
-        <p>{{ location.description|safe }}</p>
         {% endblock %}
 </div>