parent
aa6e3bcc04
commit
bd0c8ea904
1 changed files with 11 additions and 0 deletions
|
@ -1,9 +1,20 @@
|
|||
from django.contrib import admin
|
||||
from django import forms
|
||||
from .models import Element, ElementDescription, ElementSeparator
|
||||
|
||||
|
||||
class ElementDescriptionAdminForm(forms.ModelForm):
|
||||
class Meta:
|
||||
model = ElementDescription
|
||||
widgets = {
|
||||
'description': forms.widgets.Textarea,
|
||||
}
|
||||
fields = '__all__'
|
||||
|
||||
|
||||
class ElementDescriptionInline(admin.StackedInline):
|
||||
model = ElementDescription
|
||||
form = ElementDescriptionAdminForm
|
||||
extra = 2
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue