admin site register

This commit is contained in:
Egor Matveev 2022-05-22 19:07:54 +03:00
parent a7f616523a
commit 86b39cbbb0
2 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,6 @@
from django.contrib import admin
# Register your models here.
from Checker.models import Checker
admin.site.register(Checker)

View File

@ -1,8 +1,5 @@
import os
from django.contrib.auth import login
from django.contrib.auth.models import User
from django.core.exceptions import ObjectDoesNotExist
from requests import get
from SprintLib.BaseView import BaseView