khaganat-web/navbar/admin.py

27 lines
712 B
Python
Raw Permalink Normal View History

2018-01-21 12:44:00 +00:00
from django.contrib import admin
from django import forms
from .models import Element, ElementDescription, ElementSeparator
2018-01-27 22:12:09 +00:00
2018-01-21 12:44:00 +00:00
class ElementDescriptionAdminForm(forms.ModelForm):
class Meta:
model = ElementDescription
2019-07-24 17:07:41 +00:00
widgets = {"description": forms.widgets.Textarea}
fields = "__all__"
2018-01-21 12:44:00 +00:00
class ElementDescriptionInline(admin.StackedInline):
model = ElementDescription
form = ElementDescriptionAdminForm
2018-01-21 12:44:00 +00:00
extra = 2
2018-01-27 22:12:09 +00:00
2018-01-21 12:44:00 +00:00
class ElementAdmin(admin.ModelAdmin):
2019-07-24 17:07:41 +00:00
list_display = ("__str__", "parent", "link", "weight")
ordering = ("parent", "weight")
2018-01-21 12:44:00 +00:00
inlines = [ElementDescriptionInline]
2018-01-27 22:12:09 +00:00
2018-01-21 12:44:00 +00:00
admin.site.register(Element, ElementAdmin)
admin.site.register(ElementSeparator)