admin.py 107 B

123456
  1. from django.contrib import admin
  2. from .models import Doc
  3. # Register your models here.
  4. admin.register(Doc)