Skip to content

Instantly share code, notes, and snippets.

@TSKGunGun
Created October 6, 2021 10:14
Show Gist options
  • Save TSKGunGun/350d023029ce4724e5cc91914af47a6d to your computer and use it in GitHub Desktop.
Save TSKGunGun/350d023029ce4724e5cc91914af47a6d to your computer and use it in GitHub Desktop.
from django import forms
from .models import Foo
class FooForm(forms.ModelForm):
class Meta:
model = Foo
fields = ('num', )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment