From 20b22736239cf3f6a4be4f7708fabda128c2ca2e Mon Sep 17 00:00:00 2001 From: Leon Noe Jovan Date: Sun, 23 Jan 2022 22:15:56 +0100 Subject: [PATCH] added region to uploads history --- templates/solar-zgodovina.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/templates/solar-zgodovina.html b/templates/solar-zgodovina.html index 5585e87..664e9ec 100644 --- a/templates/solar-zgodovina.html +++ b/templates/solar-zgodovina.html @@ -73,6 +73,19 @@ "N" : "Besedilo ne vsebuje učiteljskih popravkov", "DN" : "Besedilo vsebuje učiteljske popravke in ne strinjam se z njihovo vključitvijo v korpus", }%} + {% set map_regions = { + "CE" : "Celje", + "GO" : "Nova Gorica", + "KK" : "Krško", + "KP" : "Koper", + "KR" : "Kranj", + "LJ" : "Ljubljana", + "MB" : "Maribor", + "MS" : "Murska Sobota", + "NM" : "Novo Mesto", + "PO" : "Postojna", + "SG" : "Slovenj Gradec", + }%} @@ -81,6 +94,9 @@ {% if institution_names[loop.index - 1] %} {% set item_values = item_values + [institution_names[loop.index - 1]] %} {% endif %} + {% if item.region %} + {% set item_values = item_values + [map_regions[item.region]] %} + {% endif %} {% if item.program %} {% set item_values = item_values + [map_program[item.program]] %} {% endif %}