38 lines
No EOL
1.2 KiB
HTML
38 lines
No EOL
1.2 KiB
HTML
{% extends "organization/home-base.html" %}
|
|
|
|
{% block js_media %}
|
|
{{ form.media.js }}
|
|
{% endblock %}
|
|
|
|
{% block three_col_media %}
|
|
{{ form.media.css }}
|
|
{% endblock %}
|
|
|
|
{% block middle_content %}
|
|
<form action="" method="post">
|
|
{% csrf_token %}
|
|
{% if form.errors %}
|
|
<div class="alert alert-danger alert-dismissable">
|
|
<a href="#" class="close">x</a>
|
|
{{ form.non_field_errors() }}
|
|
{{ form.errors }}
|
|
</div>
|
|
{% endif %}
|
|
{% for field in form %}
|
|
{% if not field.is_hidden %}
|
|
<div style="margin-bottom: 1em;">
|
|
{{ field.errors }}
|
|
<label for="{{field.id_for_label }}"><b>{{ field.label }}{% if field.field.required %}<span class="red"> * </span>{% endif %}:</b> </label>
|
|
<div class="org-field-wrapper" id="org-field-wrapper-{{field.html_name }}">
|
|
{{ field }}
|
|
</div>
|
|
{% if field.help_text %}
|
|
<small class="org-help-text"><i class="fa fa-exclamation-circle"></i> {{ field.help_text|safe }}</small>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<button type="submit">{{ _('Save') }}</button>
|
|
</form>
|
|
{% endblock %} |