10 lines
176 B
Python
10 lines
176 B
Python
from django import forms
|
|
|
|
from lists.models import ListItem
|
|
|
|
|
|
class ListItemForm(forms.ModelForm):
|
|
class Meta:
|
|
model = ListItem
|
|
fields = ['entity', 'tags']
|