Skip to content

Instantly share code, notes, and snippets.

View johnpearson81's full-sized avatar

johnpearson81

View GitHub Profile
@johnpearson81
johnpearson81 / cbv_multiple_forms.html
Created July 6, 2020 22:51 — forked from badri/cbv_multiple_forms.html
Django multiple forms code with sample usage
{% extends "base.html" %}
{% block content %}
<form method="post">{% csrf_token %}
{{ forms.subscription }}
<input type="submit" value="Subscribe">
</form>
<form method="post">{% csrf_token %}
{{ forms.contact }}
<input type="submit" value="Send">