Initial commit

This commit is contained in:
2025-11-18 03:36:49 +08:00
commit d17c7efb3c
7078 changed files with 831480 additions and 0 deletions

18
plans/admin.py Normal file
View File

@@ -0,0 +1,18 @@
from django.contrib import admin
from .models import Plan
@admin.register(Plan)
class PlanAdmin(admin.ModelAdmin):
list_display = (
'name',
'base_price_per_domain',
'included_traffic_gb_per_domain',
'overage_price_per_gb',
'is_active',
'is_public',
'updated_at',
)
search_fields = ('name',)
# Register your models here.