+{% block breadcrumbs %}
+
{{ object.custom_object_type.get_verbose_name_plural }}
+
{{ object.custom_object_type }}
+{% endblock breadcrumbs %}
- {# Title #}
-
-
{% block title %}{{ object }}{% endblock title %}
- {% block subtitle %}{% endblock %}
-
+{% block object_identifier %}
+{{ object|meta:"app_label" }}.{{ object.custom_object_type.name }}:{{ object.pk }}
+{% if object.slug %}({{ object.slug }}){% endif %}
+{% endblock object_identifier %}
- {# Controls #}
-
- {% block controls %}
-
- {% block control-buttons %}
- {# Default buttons #}
- {% if perms.extras.add_bookmark and object.bookmarks %}
- {% custom_object_bookmark_button object %}
- {% endif %}
- {% if perms.extras.add_subscription and object.subscriptions %}
- {% custom_object_subscribe_button object %}
- {% endif %}
- {% if request.user|can_add:object %}
- {% custom_object_clone_button object %}
- {% endif %}
- {% if request.user|can_change:object %}
- {% custom_object_edit_button object %}
- {% endif %}
- {% if request.user|can_delete:object %}
- {% custom_object_delete_button object %}
- {% endif %}
- {% endblock %}
-
+{% block title %}{{ object }}{% endblock title %}
- {# Custom links #}
-
-
- {% block custom-links %}
- {% custom_links object %}
- {% endblock custom-links %}
-
-
-
- {% endblock controls %}
-
+{% block subtitle %}
+
+ {% trans "Created" %} {{ object.created|isodatetime:"minutes" }}
+ {% if object.last_updated %}
+ ·
+ {% trans "Updated" %} {{ object.last_updated|isodatetime:"minutes" }}
+ {% endif %}
+
+{% endblock subtitle %}
+{% block controls %}
+
+ {% block control-buttons %}
+ {# Default buttons #}
+ {% if perms.extras.add_bookmark and object.bookmarks %}
+ {% custom_object_bookmark_button object %}
+ {% endif %}
+ {% if perms.extras.add_subscription and object.subscriptions %}
+ {% custom_object_subscribe_button object %}
+ {% endif %}
+ {% if request.user|can_add:object %}
+ {% custom_object_clone_button object %}
+ {% endif %}
+ {% if request.user|can_change:object %}
+ {% custom_object_edit_button object %}
+ {% endif %}
+ {% if request.user|can_delete:object %}
+ {% custom_object_delete_button object %}
+ {% endif %}
+ {% endblock %}
-
+
+ {% block custom-links %}
+ {% custom_links object %}
+ {% endblock custom-links %}
+
+