Initial Commit

This commit is contained in:
jain
2023-06-23 19:13:49 +05:30
parent 501deaac0b
commit 8bc3a307c0
49 changed files with 1752 additions and 0 deletions

9
zod_bank/junior/admin.py Normal file
View File

@ -0,0 +1,9 @@
from django.contrib import admin
from .models import Junior
# Register your models here.
@admin.register(Junior)
class JuniorAdmin(admin.ModelAdmin):
list_display = ['auth']
def __str__(self):
return self.auth__email