9
lists/forms.py
Normal file
9
lists/forms.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django import forms
|
||||
|
||||
from lists.models import ListItem
|
||||
|
||||
|
||||
class ListItemForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = ListItem
|
||||
fields = ['entity', 'tags']
|
||||
Reference in New Issue
Block a user