backend/checker/admin.py

6 lines
139 B
Python
Raw Normal View History

2022-08-26 17:00:34 +03:00
from django.contrib import admin
# Register your models here.
from checker.models import ParagraphType
admin.site.register(ParagraphType)