-
Notifications
You must be signed in to change notification settings - Fork 963
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
33 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{% comment %} https://github.com/newpanjing/simpleui/pull/506/files {% endcomment %} | ||
{% load simpletags %} | ||
<fieldset class="module aligned {{ fieldset.classes }}"> | ||
{% if fieldset.name %}<h2>{{ fieldset.name }}</h2>{% endif %} | ||
{% if fieldset.description %}<div class="description">{{ fieldset.description|safe }}</div>{% endif %} | ||
{% for line in fieldset %} | ||
<div class="form-row{% if line.fields|length == 1 and line.errors %} errors{% endif %}{% if not line.has_visible_field %} hidden{% endif %}{% for field in line %}{% if field.field.name %} field-{{ field.field.name }}{% endif %}{% endfor %}"> | ||
{% if line.fields|length == 1 %}{{ line.errors }}{% endif %} | ||
{% for field in line %} | ||
<div {% if not line.fields|length == 1 %} class="fieldBox{% if field.field.name %} field-{{ field.field.name }}{% endif %} | ||
{% if not field.is_readonly and field.errors %}errors{% endif %} | ||
{% if field.field.is_hidden %}hidden{% endif %} | ||
" | ||
{% elif field.is_checkbox %} | ||
class="checkbox-row" | ||
{% endif %}> | ||
{% if not line.fields|length == 1 and not field.is_readonly %}{{ field.errors }}{% endif %} | ||
{% if field.is_checkbox %} | ||
{{ field.field }}{{ field.label_tag }} | ||
{% else %} | ||
{{ field.label_tag }} | ||
{% if field.is_readonly %} | ||
<div class="readonly">{{ field.contents }}</div> | ||
{% else %} | ||
{{ field.field|get_value }} | ||
{% endif %} | ||
{% endif %} | ||
{% if field.field.help_text %}<div class="help">{{ field.field.help_text|safe }}</div>{% endif %} | ||
</div> | ||
{% endfor %} | ||
</div> | ||
{% endfor %} | ||
</fieldset> |