initial commit
This commit is contained in:
21
feeds/forms.py
Normal file
21
feeds/forms.py
Normal file
@@ -0,0 +1,21 @@
|
||||
from django.forms import ModelForm
|
||||
|
||||
from feeds.models import Feed
|
||||
|
||||
|
||||
class FeedForm(ModelForm):
|
||||
prefix = 'feed'
|
||||
|
||||
class Meta:
|
||||
model = Feed
|
||||
exclude = 'owner', 'lock', 'config_type', 'config_id', 'last_check', 'last_id',
|
||||
|
||||
|
||||
def get_config_form(mdl):
|
||||
class ConfigForm(ModelForm):
|
||||
prefix = 'config'
|
||||
|
||||
class Meta:
|
||||
model = mdl
|
||||
exclude = ()
|
||||
return ConfigForm
|
Reference in New Issue
Block a user