mirror of
https://github.com/lemeow125/DocManagerBackend.git
synced 2025-01-19 01:23:02 +08:00
12 lines
317 B
Python
12 lines
317 B
Python
|
from django.contrib import admin
|
||
|
from unfold.admin import ModelAdmin
|
||
|
from .models import AuthorizationRequest
|
||
|
|
||
|
# Register your models here.
|
||
|
|
||
|
|
||
|
@admin.register(AuthorizationRequest)
|
||
|
class AuthorizationRequestAdmin(ModelAdmin):
|
||
|
search_fields = ["id"]
|
||
|
list_display = ["id", "date_requested", "status", "college"]
|