Initial commit from monorepo

This commit is contained in:
Ruslan Bakiev
2026-01-07 09:12:35 +07:00
commit 5a5186732b
53 changed files with 3347 additions and 0 deletions

10
suppliers/admin.py Normal file
View File

@@ -0,0 +1,10 @@
from django.contrib import admin
from .models import SupplierProfile
@admin.register(SupplierProfile)
class SupplierProfileAdmin(admin.ModelAdmin):
list_display = ['name', 'country', 'is_verified', 'is_active', 'created_at']
list_filter = ['is_verified', 'is_active', 'country']
search_fields = ['name', 'description', 'team_uuid']
readonly_fields = ['uuid', 'created_at', 'updated_at']