1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{% extends 'base.html' %} {% load bootstrap3 %} {% block title %} Forms {% endblock %} {% block content %} <form role="form" method="post"> {% csrf_token %} {% bootstrap_form form %} {% buttons submit='OK' reset="Cancel" %}{% endbuttons %} </form> {% endblock %}