-
+
+
+
+
+{{citationform.text.label}}: |
+ {% render citationform.text user action %} |
+
+
+{{citationform.gramps_id.label}}: |
+ {% render citationform.gramps_id user action %} |
+{{citationform.private.label}}: |
+ {% render citationform.private user action %} |
+
+
+{{citationform.page.label}}: |
+ {% render citationform.page user action %} |
+
+
+{{citationform.confidence.label}}: |
+ {% render citationform.confidence user action %} |
+
+
+
+
+
+ {% note_table citation user action "/note/add/citation/%s" citation.handle %}
-
-
+
Note: Any changes in the shared citation information will be reflected
+ in the citation itself, for all items that reference the citation.
+
+
+
+
+
Shared source information
+
+
+
+
+
+
+{{sourceform.title.label}}: |
+ {% render sourceform.title user action %} |
+
+
+{{sourceform.author.label}}: |
+ {% render sourceform.author user action %} |
+
+
+{{sourceform.gramps_id.label}}: |
+ {% render sourceform.gramps_id user action %} |
+{{sourceform.private.label}}: |
+ {% render sourceform.private user action %} |
+
+
+{{sourceform.abbrev.label}}: |
+ {% render sourceform.abbrev user action %} |
+
+
+{{sourceform.pubinfo.label}}: |
+ {% render sourceform.pubinfo user action %} |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Note: Any changes in the shared source information will be reflected
+ in the source itself, for all items that reference the source.
+
+
+
+
+{% if user.is_superuser %}
+ {% if action == "edit" %}
+ {% make_button "Back to Citation" "/citation/%s" citation.handle %}
+
+
+ {% else %}
+ {% ifequal action "add" %}
+ {% make_button "Cancel" "/citation/" %}
+
+
+ {% else %}
+ {% make_button "Back to Citations" "/citation" %}
+ {% make_button "Add Citation" "/citation/add" %}
+ {% make_button "Edit Citation" "/citation/%s/edit" citation.handle %}
+ {% make_button "Delete Citation" "/citation/%s/delete" citation.handle %}
+ {% endifequal %}
+ {% endif %}
+{% else %}
+{% endif %}
+
{% endblock %}
diff --git a/src/data/templates/view_person_detail.html b/src/data/templates/view_person_detail.html
index c3bb570e0..8e9afbcb1 100644
--- a/src/data/templates/view_person_detail.html
+++ b/src/data/templates/view_person_detail.html
@@ -93,26 +93,26 @@
- {% event_table person user action "/person/%s/event" person.handle %}
+ {% event_table person user action "/event/add/person/%s" person.handle %}
{% name_table person user action "/person/%s/name" person.handle %}
- {% citation_table person user action "/person/%s/citation" person.handle %}
+ {% citation_table person user action "/citation/add/person/%s" person.handle %}
{% attribute_table person user action "/person/%s/attribute" person.handle %}
- {% address_table person user action "/person/%s/address" person.handle %}
+ {% address_table person user action "/place/add/person/%s" person.handle %}
- {% note_table person user action "/person/%s/note" person.handle %}
+ {% note_table person user action "/note/add/person/%s" person.handle %}
- {% gallery_table person user action "/person/%s/gallery" person.handle %}
+ {% gallery_table person user action "/media/add/person/%s" person.handle %}
{% internet_table person user action "/person/%s/internet" person.handle %}
@@ -124,7 +124,7 @@
{% lds_table person user action "/person/%s/lds" person.handle %}
- {% reference_table person user action "/person/%s/reference" person.handle %}
+ {% reference_table person user action "/reference/add/person/%s" person.handle %}
diff --git a/src/data/templates/view_place_detail.html b/src/data/templates/view_place_detail.html
index 5deb334e9..63a5260fa 100644
--- a/src/data/templates/view_place_detail.html
+++ b/src/data/templates/view_place_detail.html
@@ -17,21 +17,29 @@