[Answer]-Breaking form fields up separately django

1๐Ÿ‘

โœ…

I would try {{ schedule_form.close_time_1 }}.

This renders the field without any label markup. This is some code I use to render a field with bootstrap:

<div class="form-group">
    <span class="field-label">{{ field.label_tag }}</span>
    {% if field.field.required %}<span class="required">*</span>{% endif %}
    <span class="field-item">{{ field }}</span>
    <div class="field-help">{{ field.help_text }}</div>
    {% if field.errors %}<div class="alert alert-warning" role="alert">{{ field.errors }}</div>{% endif %}
</div>

Where field is eg. schedule_form.close_time_1.

More on the topic in Django docs: Working with forms.

๐Ÿ‘คWtower

Leave a comment