mirror of
https://github.com/house-of-vanity/OutFleet.git
synced 2025-08-21 14:37:16 +00:00
16 lines
358 B
Python
16 lines
358 B
Python
![]() |
"""
|
||
|
Test admin file to check if code execution works
|
||
|
"""
|
||
|
|
||
|
import logging
|
||
|
logger = logging.getLogger(__name__)
|
||
|
logger.info("🧪 TEST ADMIN FILE EXECUTING!")
|
||
|
|
||
|
from django.contrib import admin
|
||
|
from .models import User
|
||
|
|
||
|
@admin.register(User)
|
||
|
class TestUserAdmin(admin.ModelAdmin):
|
||
|
list_display = ('username',)
|
||
|
|
||
|
logger.info("🧪 TEST ADMIN FILE COMPLETED!")
|