implement plan pricing
Some checks failed
Django Tests / test (push) Failing after 1m3s
Django Tests / test (pull_request) Failing after 1m3s

This commit is contained in:
Tobias Brunner 2025-06-20 17:40:38 +02:00
parent 96b667dd75
commit 61cabd1b1e
No known key found for this signature in database
7 changed files with 192 additions and 1257 deletions

View file

@ -13,7 +13,7 @@ class PlanInline(admin.StackedInline):
model = Plan
extra = 1
fieldsets = (
(None, {"fields": ("name", "description", "pricing", "plan_description")}),
(None, {"fields": ("name", "description", "plan_description")}),
)