Files
backend/apps/geology/admin/photo.py
Husanjonazamov 2add18b8d2
Some checks failed
Deploy Django Application to Server / deploy (push) Failing after 10s
Telegram Notifications / Telegram Gate (push) Failing after 5s
adminka togirlandi
2026-03-03 15:23:11 +05:00

12 lines
379 B
Python

from django.contrib import admin
from apps.geology.models import Photo
@admin.register(Photo)
class PhotoAdmin(admin.ModelAdmin):
list_display = ("name", "description", "type", "size", "image", "created_at")
search_fields = ("name", "description", "type", "size", "image")
list_filter = ("type",)
exclude = ("created_at", "updated_at", "type", "size", "name")