diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-05-29 12:05:49 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-17 13:21:28 +0200 |
commit | 20976d464ab6214222b48c0779848f69c0e9acbc (patch) | |
tree | d4d6c917902002f8c4a86b3c9f65ecacad12d7ec /archaeological_finds/templates/ishtar | |
parent | fc66ccfca7c84fa7242837c8487a4b742b50bd78 (diff) | |
download | Ishtar-20976d464ab6214222b48c0779848f69c0e9acbc.tar.bz2 Ishtar-20976d464ab6214222b48c0779848f69c0e9acbc.zip |
QA: duplicate find
Diffstat (limited to 'archaeological_finds/templates/ishtar')
-rw-r--r-- | archaeological_finds/templates/ishtar/forms/qa_find_duplicate.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/archaeological_finds/templates/ishtar/forms/qa_find_duplicate.html b/archaeological_finds/templates/ishtar/forms/qa_find_duplicate.html new file mode 100644 index 000000000..c00c74c31 --- /dev/null +++ b/archaeological_finds/templates/ishtar/forms/qa_find_duplicate.html @@ -0,0 +1,46 @@ +{% extends "ishtar/forms/qa_base.html" %} +{% load i18n inline_formset table_form %} + +{% block main_form %} +{% if form.non_field_errors %} +<div class="alert alert-danger" role="alert"> + {{form.non_field_errors}} +</div> +{% endif %} +{% if operation %} +<div class="alert alert-info"> + {% trans "The new find will have a new base find created. Instead of this action use a division treatment if the new find is from the same base find (share the same field data)." %} +</div> +<div class="form-row"> + <div class="form-group col-lg-12 required full-width"> + <label>{% trans "Operation" %}{% trans ":" %}</label> + {{operation}} + </div> +</div> +<div class="form-row"> + <div class="form-group col-lg-12 required full-width"> + <label>{% trans "Context record" %}{% trans ":" %}</label> + {{context_record }} + </div> +</div> +{% endif %} +{% with force_large_col=True %} +<div class="form-row"> + {% with form.label as field %} + {% include "blocks/bs_field_snippet.html" %} + {% endwith %} +</div> +<div class="form-row"> + {% with form.denomination as field %} + {% include "blocks/bs_field_snippet.html" %} + {% endwith %} +</div> +{% endwith %} +{% comment %} +<p> + <label for="id_modify">{% trans "Edit the duplicated find" %}{% trans ":" %}</label> + <input type="checkbox" name="modify" id="id_modify"> +</p> +{% endcomment %} +{% endblock %} + |