diff options
Diffstat (limited to 'chimere/templates')
| -rw-r--r-- | chimere/templates/chimere/detail.html | 33 | ||||
| -rw-r--r-- | chimere/templates/chimere/edit.html | 2 |
2 files changed, 18 insertions, 17 deletions
diff --git a/chimere/templates/chimere/detail.html b/chimere/templates/chimere/detail.html index f09a982..d333841 100644 --- a/chimere/templates/chimere/detail.html +++ b/chimere/templates/chimere/detail.html @@ -2,22 +2,23 @@ {% load sanitize %} <h2 class='ui-widget ui-state-default ui-corner-all ui-widget-header'>{{ marker.name }}</h2> <div id='detail_content'> - {% if marker.picture %}<img src='{{STATIC_URL}}{{marker.picture}}' alt='{{marker.name}}'/>{%endif%} + {% if marker.picture %}<img src='{{STATIC_URL}}{{marker.picture}}' alt='{{marker.name}}'/>{%endif%} <div> - {% if dated %} - <p id='detail_start_date'><label>{% trans "Date:" %}</label> <span>{{marker.start_date|date:"D d M Y"}} - {% 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 hr strong em span:style a:href:target 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 %} - <a href='{{share_network.1}}'>{{share_network.0}}</a> - {% endfor %}{%else%} - <ul id='share'> - <li>{% trans "Share"%}</li>{% for share_network in share_networks %} - <li><a href='{{share_network.1}}'><img src="{{share_network.2}}" alt="{{share_network.0}}"/></a></li> - {% endfor %}</ul>{% endif %} + {% if dated %} + <p id='detail_start_date'><label>{% trans "Date:" %}</label> <span>{{marker.start_date|date:"D d M Y"}} + {% 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 hr strong em span:style a:href:target 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 %} + <a href='{{share_network.1}}'>{{share_network.0}}</a> + {% endfor %}{%else%} + <ul id='share'> + <li>{% trans "Share"%}</li>{% for share_network in share_networks %} + <li><a href='{{share_network.1}}'><img src="{{share_network.2}}" alt="{{share_network.0}}"/></a></li> + {% endfor %}</ul>{% endif %} + <a href='{% url chimere:edit-marker area_name marker.pk %}'>{% trans "Submit a modification" %}</a> {% endif %} </div> diff --git a/chimere/templates/chimere/edit.html b/chimere/templates/chimere/edit.html index 4023a7e..d087f1a 100644 --- a/chimere/templates/chimere/edit.html +++ b/chimere/templates/chimere/edit.html @@ -18,7 +18,7 @@ <fieldset class='edit'> <legend>{% trans "Add a new site" %}</legend> <p>* {% trans "indicates a mandatory field" %}</p> - <form enctype="multipart/form-data" method='post' action='{{extra_url}}edit/'> + <form enctype="multipart/form-data" method='post' action='.'> {% csrf_token %} <div class="fieldWrapper"> <label for="id_name">{% trans "Site name"%} *</label> |
