dodanie modeli do adminpage
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Jakub K 2023-12-22 19:32:10 +01:00
parent d88ef109f5
commit 2c9f6e9591
2 changed files with 5 additions and 2 deletions

View File

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

View File

@ -1,3 +1,5 @@
from django.contrib import admin
from .models import SkillLevels, JobListing
# Register your models here.
admin.register(SkillLevels)
admin.register(JobListing)