{% extends "view_page_detail.html" %} {% load my_tags %} {% block content %}
{% include "detail_breadcrumb.html" %}

{{source.title|escape}}

{% comment %} 2 cols {% endcomment %} {% if sourceform.errors %}

The following fields have errors. Please correct and try again.

{{sourceform.errors}}

{% endif %} {% csrf_token %}
{{sourceform.title.label}}: {% render sourceform.title user action %}
{{sourceform.gramps_id.label}}: {% render sourceform.gramps_id user action %}
{{sourceform.abbrev.label}}: {% render sourceform.abbrev user action %}
{{sourceform.pubinfo.label}}: {% render sourceform.pubinfo user action %}
{% if user.is_superuser %} {% if action == "edit" %} {% make_button "Back to Source" "/source/%s" source.handle %} {% else %} {% ifequal action "add" %} {% make_button "Cancel" "/source/" %} {% else %} {% make_button "Back to Sources" "/source" %} {% make_button "Add Source" "/source/add" %} {% make_button "Edit Source" "/source/%s/edit" source.handle %} {% make_button "Delete Source" "/source/%s/delete" source.handle %} {% endifequal %} {% endif %} {% else %} {% endif %} {% endblock %}