Added new context variable form_hide_required_text for hide the word "(required)" from selected forms

This commit is contained in:
Roberto Rosario
2011-03-18 14:15:13 -04:00
parent b4a475cac2
commit 6f90cee824
3 changed files with 4 additions and 1 deletions

View File

@@ -34,7 +34,7 @@
{% for field in form.visible_fields %}
<div class="group">
{% if field.errors %}<div class="fieldWithErrors">{% endif %}
<label class="label">{{ field.label_tag }}{% if field.field.required and not read_only %} ({% trans "required" %}){% endif %}</label>
<label class="label">{{ field.label_tag }}{% if field.field.required and not read_only and not form_hide_required_text %} ({% trans "required" %}){% endif %}</label>
{% if field.errors %}<span class="error">{% for error in field.errors %}{{ error }}{% if not forloop.last %} | {% endif %}{% endfor %}</span></div>{% endif %}
{{ field }}
{% if field.help_text %}<span class="description">{{ field.help_text }}</span>{% endif %}