Skip to content

Instantly share code, notes, and snippets.

@aliceridgway
Created June 25, 2022 20:56
Show Gist options
  • Save aliceridgway/24821183a49046de3f38a0633d488294 to your computer and use it in GitHub Desktop.
Save aliceridgway/24821183a49046de3f38a0633d488294 to your computer and use it in GitHub Desktop.
Basic Django form
from django import forms
from . import models
class PostForm(forms.ModelForm):
class Meta:
model = models.Post
fields = ["title", "body"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment