diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-10 19:28:32 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-10 19:28:32 +0100 |
commit | 946e9655eb363e1de6446d173ee89e176429c36f (patch) | |
tree | 6bc682408c7ca34fe9e129b9fc0f8b5a46118d9b | |
parent | 29e8ae5f72fb31d89ef0d5bab7ad7c9454c8f5fd (diff) | |
parent | d73730bfc9730a330f327c3d4c382b30c90e9eb1 (diff) | |
download | Chimère-946e9655eb363e1de6446d173ee89e176429c36f.tar.bz2 Chimère-946e9655eb363e1de6446d173ee89e176429c36f.zip |
Merge branch 'master' into carte-ouverte
-rw-r--r-- | chimere/rss/templates/rss_descr.html | 2 | ||||
-rw-r--r-- | chimere/templates/detail.html | 2 | ||||
-rw-r--r-- | chimere/templates/welcome.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/chimere/rss/templates/rss_descr.html b/chimere/rss/templates/rss_descr.html index f425e01..97a9c50 100644 --- a/chimere/rss/templates/rss_descr.html +++ b/chimere/rss/templates/rss_descr.html @@ -3,6 +3,6 @@ <div id='detail_content'> {% if obj.picture %}<img src='{{obj.picture.url}}' alt="{{obj.name}}"/>{%endif%} <div>{% for property in obj.getProperties %} -<p id='{{property.propertymodel.getNamedId}}'>{{ property.value|sanitize:"p b i br a:href ul li ol h1 h2 h3 h4"|safe }}</p> +<p id='{{property.propertymodel.getNamedId}}'>{{ property.value|sanitize:"p b i br hr strong em span:style a:href ul li ol h1 h2 h3 h4"|safe }}</p> {% endfor %}</div> </div> diff --git a/chimere/templates/detail.html b/chimere/templates/detail.html index 6df7e76..cfde67f 100644 --- a/chimere/templates/detail.html +++ b/chimere/templates/detail.html @@ -9,7 +9,7 @@ {% if marker.end_date %} - {{marker.end_date|date:"D d M Y"}}</p>{% endif %}</span> {% endif %} {% for property in marker.getProperties %} -<p id='{{property.propertymodel.getNamedId}}'>{{ property.value|sanitize:"p b i br a:href ul li ol h1 h2 h3 h4"|safe}}</p> +<p id='{{property.propertymodel.getNamedId}}'>{{ property.value|sanitize:"p b i br hr strong em span:style a:href ul li ol h1 h2 h3 h4"|safe}}</p> {% endfor %} </div>{% if share_networks %} {% if simple %}{% trans "Share on"%}{% for share_network in share_networks %} diff --git a/chimere/templates/welcome.html b/chimere/templates/welcome.html index 10034a4..e74df4f 100644 --- a/chimere/templates/welcome.html +++ b/chimere/templates/welcome.html @@ -12,7 +12,7 @@ {% else %} <h3>{{news.name}} – {{ news.start_date }}{% if news.end_date %} - {{ news.end_date }}{% endif %}</h3> {% for property in news.getProperties %} - <p id='{{news.propertymodel.getNamedId}}'>{{ property.value|sanitize:"p b i br a:href ul li ol h1 h2 h3 h4"|safe }}</p> + <p id='{{news.propertymodel.getNamedId}}'>{{ property.value|sanitize:"p b i br hr strong em span:style a:href ul li ol h1 h2 h3 h4"|safe }}</p> {% endfor %} <p class='marker_link'><a href='{{ news.get_absolute_url }}'>{% trans "See it on the map"%}</a></p> {% endif %} |