diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-04-19 17:10:43 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-04-19 17:10:43 +0200 |
commit | 16fca50c215d42b10df2904e9cbc67256aceb9f3 (patch) | |
tree | 76a41b178511f2e4767e3bf534e9536a4754c94f /archaeological_finds | |
parent | 226bc1e62a3fec5df009d3f4bc349303167b289f (diff) | |
download | Ishtar-16fca50c215d42b10df2904e9cbc67256aceb9f3.tar.bz2 Ishtar-16fca50c215d42b10df2904e9cbc67256aceb9f3.zip |
sheet find: add container index - CSV export: deduplicate multi-values
Diffstat (limited to 'archaeological_finds')
-rw-r--r-- | archaeological_finds/templates/ishtar/sheet_find.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/archaeological_finds/templates/ishtar/sheet_find.html b/archaeological_finds/templates/ishtar/sheet_find.html index 44a463fe9..57bcc9aef 100644 --- a/archaeological_finds/templates/ishtar/sheet_find.html +++ b/archaeological_finds/templates/ishtar/sheet_find.html @@ -308,6 +308,16 @@ </nav> </dd> </dl> + {% if item.container.index %} + <div class='row'> + <dl class="col-12 flex-wrap"> + <dt>{% trans "Index" %}</dt> + <dd> + {{ item.container.location }} - {{ item.container.index }} + </dd> + </dl> + </div> + {% endif %} {% endif %} </div> {% endif %} |