mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-20 08:34:07 +01:00
19 lines
874 B
HTML
19 lines
874 B
HTML
{% load i18n %}
|
|
{% load crispy_forms_field %}
|
|
|
|
<div class="form-group mb-3">
|
|
<div class="btn-group w-100" role="group" aria-label="{{ field.label }}">
|
|
<input type="radio" class="btn-check" name="{{ field.name }}" id="{{ field.id_for_label }}_false"
|
|
value="false" {% if not field.value %}checked{% endif %}>
|
|
<label class="btn btn-outline-primary w-50" for="{{ field.id_for_label }}_false">{% trans 'Projected' %}</label>
|
|
|
|
<input type="radio" class="btn-check" name="{{ field.name }}" id="{{ field.id_for_label }}_true"
|
|
value="true" {% if field.value %}checked{% endif %}>
|
|
<label class="btn btn-outline-success w-50" for="{{ field.id_for_label }}_true">{% trans 'Paid' %}</label>
|
|
</div>
|
|
|
|
{% if field.help_text %}
|
|
<div class="help-text">{{ field.help_text|safe }}</div>
|
|
{% endif %}
|
|
</div>
|