- Timestamp:
- 04/30/08 13:35:20 (23 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/pylucid/media/PyLucid/internal_page/preferences/edit_form.html
r1540 r1544 1 <fieldset><legend>{{ plugin_name }} - {{ pref_name }}</legend> 2 <p>{{ description }}</p> 1 <fieldset><legend>{{ plugin_name }}</legend> 3 2 <form method="post" action="."> 4 {{ form.as_p }} 3 <ul id="input_fields"> 4 {% for field in form %} 5 <li title="{{ field.help_text }}" class="{{ field.html_name }}"> 6 <label for="{{ field.auto_id }}">{{ field.label }} :</label> 7 {{ field }} 8 <span class="field_help_text">{{ field.help_text }}</span> 9 {% if field.errors %}<li class="field_errors">{{ field.errors }}</li>{% endif %} 10 </li> 11 {% endfor %} 12 </ul> 5 13 <input type="submit" name="save" value="{% trans 'save' %}" /> 6 <input type="submit" name="validate" value="{% trans 'validate' %}" />7 14 <input onclick="self.location.href='{{ url_abort }}'" name="abort" value="{% trans 'abort' %}" type="reset" /> 8 15 </form> 9 <p><strong>Note:</strong><br />10 {% blocktrans %}11 Validate checks only, if the input is a valid Python expression string.<br />12 It not examined if the data are logically correct.13 {% endblocktrans %}14 </p>15 16 </fieldset>