show order in inline

This commit is contained in:
Tobias Brunner 2025-06-23 16:42:28 +02:00
parent fef37c8ec3
commit 7bbde80913
Signed by: tobru
SSH key fingerprint: SHA256:kOXg1R6c11XW3/Pt9dbLdQvOJGFAy+B2K6v6PtRWBGQ

View file

@ -49,9 +49,9 @@ class PlanInline(admin.StackedInline):
extra = 1
fieldsets = (
(None, {"fields": ("name", "description", "plan_description")}),
("Display Options", {"fields": ("is_best",)}),
("Display Options", {"fields": ("is_best", "order")}),
)
show_change_link = True # This allows clicking through to the Plan admin where prices can be managed
show_change_link = True
class OfferingInline(admin.StackedInline):