Skip to content

Instantly share code, notes, and snippets.

@faulander
Last active July 17, 2021 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save faulander/45658095787d50c29845643ed357b2aa to your computer and use it in GitHub Desktop.
Save faulander/45658095787d50c29845643ed357b2aa to your computer and use it in GitHub Desktop.
[Django Crispy Forms Setup] #Django #Python
{% crispy form %}
<form action="{% url 'form handler url' %}" class="uniForm" method="post">
{% crispy first_form %}
{% crispy second_form %}
</form>
INSTALLED_APPS = (
...
'crispy_forms',
)
CRISPY_TEMPLATE_PACK = 'bootstrap'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment