{# admin/base_detail.html — block-based base for read-only detail views. Extend this to customize individual sections of the detail view. Available blocks: detail_breadcrumb — breadcrumb navigation detail_header — page header (title + edit/delete actions) detail_fieldsets — read-only field value groups Context: registered, obj, form_fields, fieldsets, permissions, view, etc. #} {% extends "base.html" %} {% block title %}{{ registered.verbose_name }} #{{ obj.id }} — {{ title | default("Admin") }}{% endblock %} {% block breadcrumb %} {{ super() }} {{ registered.verbose_name_plural }} {% endblock %} {% block content %}
#{{ obj.id }} {% if obj.__str__() %} — {{ obj.__str__() }}{% endif %}