aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-07-13 01:22:11 +0300
committerFrederick Muriuki Muriithi2022-07-19 04:59:59 +0300
commit45396cacc693a74f7c05a96f814225145dc27ccc (patch)
tree0501e573484efab5d518707e61407e842353d789 /qc_app/templates
parent0410f6e90b80d4aa8427ea3c398fe70e1977043c (diff)
downloadgn-uploader-45396cacc693a74f7c05a96f814225145dc27ccc.tar.gz
Fix macro
Diffstat (limited to 'qc_app/templates')
-rw-r--r--qc_app/templates/dbupdate_hidden_fields.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/qc_app/templates/dbupdate_hidden_fields.html b/qc_app/templates/dbupdate_hidden_fields.html
index cdebeab..ec31202 100644
--- a/qc_app/templates/dbupdate_hidden_fields.html
+++ b/qc_app/templates/dbupdate_hidden_fields.html
@@ -5,10 +5,10 @@
<input type="hidden" name="filename" value="{{filename}}" />
<input type="hidden" name="filetype" value="{{filetype}}" />
{%if kwargs.get("species"):%}
-<input type="hidden" name="species" value="{{species}}" />
+<input type="hidden" name="species" value="{{kwargs['species']}}" />
{%endif%}
{%if kwargs.get("genechipid"):%}
-<input type="hidden" name="genechipid" value="{{genechipid}}" />
+<input type="hidden" name="genechipid" value="{{kwargs['genechipid']}}" />
{%endif%}
{%endmacro%}