Urbanecm

Django template

Nov 23rd, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. {% extends 'base.html' %}
  2. {% load widget_tweaks %}
  3. {% block body %}
  4. <div class="container">
  5. <h1>Zodpovězte, prosím, pár otázek</h1>
  6. <form class="form-horizontal" method="post">
  7. {% csrf_token %}
  8. {{ form.non_field_errors }}
  9. {% for field in form %}
  10. {{ field.errors }}
  11. {{ field.label_tag }} {{field|add_class:"form-control"}}
  12. {% endfor %}
  13. <input class="form-control" type="submit" value="Odeslat a potvrdit registraci">
  14. </form>
  15. </div>
  16. {% endblock body %}
Add Comment
Please, Sign In to add comment