feat: created first ticket class

This commit is contained in:
2025-05-03 00:46:47 +02:00
parent 3fe2151588
commit b8b9443d8a
6 changed files with 57 additions and 9 deletions

View File

@@ -1,3 +1,5 @@
from django.contrib import admin
# Register your models here.
from .models import Ticket
admin.site.register(Ticket)