mirror of
https://github.com/DerTyp7/tealcode-django-python.git
synced 2025-10-29 12:32:09 +01:00
5 lines
126 B
Python
5 lines
126 B
Python
from django.contrib import admin
|
|
from .models import Category, Topic
|
|
|
|
admin.site.register(Category)
|
|
admin.site.register(Topic) |