mirror of
https://github.com/bcomsugi/dasaproject.git
synced 2026-01-10 07:02:38 +07:00
7 lines
163 B
Python
7 lines
163 B
Python
from django.forms import ModelForm
|
|
from .models import Customer
|
|
|
|
class CustomerForm(ModelForm):
|
|
class Meta:
|
|
model = Customer
|
|
fields = "__all__" |