{% extends "base.html" %} {% load icons %} {% load i18n %} {% block title %}{{ title }}{% endblock %} {% block content %} {% if create_url %} {% icon 'plus' %} {%trans "Create New" %} {% endif %}
{{ object }}
{% icon 'edit' %} {%trans "Edit"%}
{% if extra_urls %}
{% for url in extra_urls %}
{{ url.1 }}
{% endfor %}
{% endif %}
{% icon 'times' %} {%trans "Delete" %}
|