aboutsummaryrefslogtreecommitdiffstats
path: root/templates/form_with_files.html
blob: 3e5e83f2563fb2422c08d8c6949ef85368548ad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends 'demo/base.html' %}

{% load bootstrap3 %}

{% block title %}
    Forms
{% endblock %}

{% block content %}

    <form role="form" method="post" enctype="multipart/form-data" {% if layout != 'vertical' %}class="form-{{ layout }}"{% endif %}>
        {% csrf_token %}
        {% bootstrap_form form layout=layout %}
        {% buttons submit='OK' reset="Cancel" %}{% endbuttons %}
    </form>

{% endblock %}