{% extends "sundae/base.html" %} {% load sundae_tags %} {% block title %}{{ object }} - {{ object_verbose_name|capfirst }}{% endblock %} {% block content %}

{{ object }}

{% if update_view_url %} Edit {% endif %} {% if delete_view_url %} Delete {% endif %} Back to List
{% include "sundae/partial/detail.html" %}
{% if custom_actions %}

Actions

{% for action in custom_actions %} {{ action.display_name|capfirst }} {% endfor %}
{% endif %}
{% endblock %}