Skip to content

Instantly share code, notes, and snippets.

@godfather68
Created September 21, 2020 21:09
Show Gist options
  • Save godfather68/5acbaf022aeefb573c1b6ba725409fc9 to your computer and use it in GitHub Desktop.
Save godfather68/5acbaf022aeefb573c1b6ba725409fc9 to your computer and use it in GitHub Desktop.
from django import forms
from .models import Customer, Request
class CreateRequestForm(forms.ModelForm):
class Meta:
model = Request
fields = '__all__'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment