adminka togirlandi
Some checks failed
Deploy Django Application to Server / deploy (push) Failing after 10s
Telegram Notifications / Telegram Gate (push) Failing after 5s

This commit is contained in:
Husanjonazamov
2026-03-03 15:23:11 +05:00
parent 8d172c6393
commit 2add18b8d2
11 changed files with 69 additions and 353 deletions

View File

@@ -1,11 +1,10 @@
from django.contrib import admin
from unfold.admin import ModelAdmin # noqa
from apps.geology.models import Geology
@admin.register(Geology)
class GeologyAdmin(ModelAdmin):
class GeologyAdmin(admin.ModelAdmin):
list_display = ("name", "category", "created_at", "updated_at")
search_fields = ("name", "title", "body1", "body2", "body3")
list_filter = ("category", "created_at", "updated_at")