mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-15 10:05:21 +00:00
10 lines
234 B
Python
10 lines
234 B
Python
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
|