mirror of
https://github.com/Rushilwiz/tj2023.git
synced 2025-04-10 23:30:17 -04:00
7 lines
146 B
Python
7 lines
146 B
Python
from django.contrib import admin
|
|
from .models import Story, Bar
|
|
|
|
# Register your models here.
|
|
admin.site.register(Story)
|
|
admin.site.register(Bar)
|