mirror of
https://github.com/Rushilwiz/tj2023.git
synced 2025-04-19 19:40:18 -04:00
6 lines
116 B
Python
6 lines
116 B
Python
from django.contrib import admin
|
|
from .models import Story
|
|
|
|
# Register your models here.
|
|
admin.site.register(Story)
|