Skip to content

Instantly share code, notes, and snippets.

@dennis90
Last active December 19, 2016 17:03
Show Gist options
  • Save dennis90/4c49f7dab602978b17ed5f40bdd07951 to your computer and use it in GitHub Desktop.
Save dennis90/4c49f7dab602978b17ed5f40bdd07951 to your computer and use it in GitHub Desktop.
<form method="POST">
{% csrf_token %}
{% for field in form %}
<div class="form-group">
<label for="id_{{ field.name }}">{{ field.label }}</label>
{{ field }}
</div>
{% endfor %}
<button type="submit" class="btn btn-primary">Gravar Cliente</button>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment