Skip to content

Instantly share code, notes, and snippets.

@devStepsize
Created April 12, 2016 16:31
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 devStepsize/044e5a80e92a02e3a1c631da34142d3c to your computer and use it in GitHub Desktop.
Save devStepsize/044e5a80e92a02e3a1c631da34142d3c to your computer and use it in GitHub Desktop.
Simple form handling with Django
from django import forms
class BandContactForm(forms.Form):
subject = forms.CharField(max_length=100)
message = forms.CharField()
sender = forms.EmailField()
cc_myself = forms.BooleanField(required=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment