forked from mike/django
7 lines
282 B
Python
7 lines
282 B
Python
|
from django.forms import ModelForm
|
||
|
from .models import VendorsData
|
||
|
|
||
|
class VendorEditForm(ModelForm):
|
||
|
class Meta:
|
||
|
model = VendorsData
|
||
|
fields = ['vendorCoverAmount', 'vendorPaidNotification', 'vendorSkipScreen', 'vendorPayWindow', 'vendorWebName', 'vendorWebAddr']
|