{% extends "base.html" %}
{% block title %}{{ admin.get_verbose_name() }} · {{ identity }}{% endblock %}
{% block content %}
{% for column, value in fields %}
- {{ column }}
-
{% if value is none %}—{% else %}{{ value }}{% endif %}
{% endfor %}
{% if audit %}
Audit
- created at
- {% if audit.created_at %}{{ audit.created_at }}{% else %}—{% endif %}
{% if audit.has_actors %}
- created by
- {% if audit.created_by %}{{ audit.created_by }}{% else %}—{% endif %}
{% endif %}
- updated at
- {% if audit.updated_at %}{{ audit.updated_at }}{% else %}—{% endif %}
{% if audit.has_actors %}
- updated by
- {% if audit.updated_by %}{{ audit.updated_by }}{% else %}—{% endif %}
{% endif %}
{% endif %}
{% endblock %}