First round of HTML fixes identified by test-crawl --vnu. - Legacy-Id: 9764 Note: SVN reference [9733] has been migrated to Git commit 205df716f8bf4b7dae9e2637f3aa1ba048a158f9
27 lines
763 B
HTML
27 lines
763 B
HTML
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}{% origin %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% bootstrap_messages %}
|
|
|
|
<form method="post" action="#custom">
|
|
{% csrf_token %}
|
|
{% bootstrap_form display_form %}
|
|
|
|
<div class="form-group">
|
|
<label>Show fields</label>
|
|
{% for field in dc.get_display_fields_config %}
|
|
<div class="checkbox">
|
|
<label for="id_{{ field.codename }}">
|
|
<input id="id_{{ field.codename }}" type="checkbox" name="{{ field.codename }}" {% if field.active %}checked{% endif %}>
|
|
{{ field.description }}
|
|
</label>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% buttons %}
|
|
<input type="submit" class="btn btn-primary" name="save_display" value="Save configuration">
|
|
{% endbuttons %}
|
|
</form>
|