diff options
| author | Étienne Loks <etienne.loks@proxience.com> | 2015-12-29 18:26:54 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@proxience.com> | 2015-12-29 18:28:18 +0100 |
| commit | a296bd385e704b1e76a774341f8ad126c892ccab (patch) | |
| tree | 648da5accc2a93a9ff5c0c80dd1ddc09f6bc708f /ishtar_common/templates/ishtar/sheet_source.html | |
| parent | 80726189acaa2ce5fa604dd589aad7d01c099d4f (diff) | |
| download | Ishtar-a296bd385e704b1e76a774341f8ad126c892ccab.tar.bz2 Ishtar-a296bd385e704b1e76a774341f8ad126c892ccab.zip | |
Add a template for operation sources
Diffstat (limited to 'ishtar_common/templates/ishtar/sheet_source.html')
| -rw-r--r-- | ishtar_common/templates/ishtar/sheet_source.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ishtar_common/templates/ishtar/sheet_source.html b/ishtar_common/templates/ishtar/sheet_source.html new file mode 100644 index 000000000..044d1b89d --- /dev/null +++ b/ishtar_common/templates/ishtar/sheet_source.html @@ -0,0 +1,25 @@ +{% extends "ishtar/sheet.html" %} +{% load i18n window_field window_link %} +{% block content %} +{% block export %} +<div class='tool'>TO BE DEFINED</div> +{% endblock %} +{% block general %} +{% field "Title" item.title %} +{% field "Source type" item.source_type %} +{% field "Format type" item.format_type %} +{% field "Scale" item.scale %} +{% field_url "Web link" item.associated_url %} +{% field_multiple "Authors" item.authors %} +{% field "Item number" item.item_number %} +{% field "Ref." item.reference %} +{% field "Internal ref." item.internal_reference %} +{% field "Description" item.description %} +{% field "Comment" item.comment %} +{% field "Additional information" item.additional_information %} +{% endblock %} +{% block related %} +{% field "Related item" item.owner %} +{% endblock %} +{% endblock %} + |
