first commit

This commit is contained in:
2025-10-11 03:50:49 -05:00
parent fcdef3ffe1
commit 9e9668172c
353 changed files with 47535 additions and 0 deletions

14
leg_info/admin.py Normal file
View File

@@ -0,0 +1,14 @@
from django.contrib import admin
from .models import *
# class EventAdmin(admin.ModelAdmin):
# # prepopulated_fields = {"slug": ("shortname",)}
# list_display = ( "show_title", "event_type", "show_date",)
# list_filter = ("venue", "event_type")
# Register your models here.
admin.site.register(Organization)
admin.site.register(Snacker)
admin.site.register(Bill)