833483b810
* adds message for checking of intervention * refactors sso message sending to handle an iterable of users * adds specific method for sending object checking related messages * adds label support for modal form for more simple clicking of checkboxes
22 lines
969 B
HTML
22 lines
969 B
HTML
{% load i18n %}
|
|
<table class="table">
|
|
<tbody>
|
|
{% for field in form %}
|
|
<tr title="{{ field.help_text }}" class="{% if field.errors %}error{% endif %}">
|
|
<th scope="row" class="col-sm-3">
|
|
<label for="id_{{ field.name }}">{{ field.label }}<span class="label-required">{% if field.field.required %}*{% endif %}</span></label>
|
|
<small>{{ field.help_text }}</small>
|
|
</th>
|
|
<td class="col-sm-9">
|
|
{{ field }}
|
|
{% for error in field.errors %}
|
|
<strong>{{ error }}</strong>
|
|
{% endfor %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% if form.has_required_fields %}
|
|
<small>{% trans 'Fields with * are required.' %}</small>
|
|
{% endif %} |