mybuddy/core/templates/forms/layouts/choices.html

10 lines
347 B
HTML

{% load i18n %}
<div class="row mb-3">
<label for="id_child" class="col-sm-2 col-form-label">{% trans fieldset.layout_attrs.label %}</label>
<div class="col-sm-10 overflow-auto pill-container">
{% for field in fieldset.fields %}
{% include "babybuddy/form_field_no_label.html" %}
{% endfor %}
</div>
</div>