File: formactions.html

package info (click to toggle)
python-crispy-bootstrap5 2025.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 724 kB
  • sloc: python: 2,035; sh: 6; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 455 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
<div
    {% if formactions.flat_attrs %}{{ formactions.flat_attrs }}{% endif %} 
    class="mb-3{% if 'form-horizontal' in form_class %} row{% endif %} {{ formactions.css_class|default:'' }} {{ field_class }}" 
    {% if formactions.id %} id="{{ formactions.id }}"{% endif %}>
    {% if label_class %}
        <div class="aab {{ label_class }}"></div>
    {% endif %}
    <div class="{{ field_class }}">
        {{ fields_output|safe }}
    </div>
</div>