blob: 655a3185a003e6ee14fff000a84480f2e123a320 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#form.py
from django.forms import ModelForm
from django.forms.widgets import TextInput
from .models import Category
class CategoryForm(ModelForm):
class Meta:
model = Category
fields = '__all__'
widgets = {
'color_rgb': TextInput(attrs={'type': 'color'}),
}
|