wallacemaxters

Untitled

May 13th, 2014
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.47 KB | None | 0 0
  1. {% extends "base.html" %}
  2. {% block contents %}
  3. <h2 class='h2'>{{ title }}</h2>
  4. <h4>{{ subtitle  }}</h4>
  5. {% if errors %}
  6. <div style='color:red'>
  7.     {{ errors }}
  8. </div>
  9. {% endif %}
  10.  
  11. <form action="{{ request.path }}" method="post">
  12.     {% csrf_token %}
  13.     {% for field in form %}
  14.     <div class='input-inline'>
  15.         {{ field.label_tag }}
  16.         {{ field }}
  17.     </div>
  18.     {% endfor %}
  19.  
  20.     <div class='input-inline'><input type="submit" value="Cadastrar" /></div>
  21. </form>
  22. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment