Aller au contenu

Django admin

Status: Placeholder — to be developed. Last reviewed:

Scope

When to register a model in Django admin (and when not), list_display / list_filter / search_fields conventions, inlines, custom admin actions, read-only vs editable fields for audit-sensitive models, how admin coexists with the user-facing CRUD UI, who can access admin (superuser-only or also staff with practice scope).

Sources to mine when writing this

  • apps/*/admin.py across the project — survey what's registered and what's not.
  • Reference admins from well-curated apps (apps/entities/, apps/dentists/).
  • Check whether admin is currently restricted to superuser or has finer-grained access.