diff options
| -rw-r--r-- | chimere/templates/chimere/edit.html | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/chimere/templates/chimere/edit.html b/chimere/templates/chimere/edit.html index fc4d792..7ab5d03 100644 --- a/chimere/templates/chimere/edit.html +++ b/chimere/templates/chimere/edit.html @@ -39,6 +39,12 @@          {%if form.point.errors %}<ul class="errorlist"><li>{% trans "Select a location for this new site" %}</li></ul>{%endif%}          {{point_widget}}      </div> +    <div class="fieldWrapper"> +        <label for="id_description">{% trans "Description" %}</label> +        {{ form.description.errors }} +        {{ form.description }} +        <p class="help">{{ form.description.help_text }}</p> +    </div>      {% if dated %}      <div class="fieldWrapper">          <label for="id_start_date">{% trans "Start date" %}</label>  | 
