diff options
author | Frederick Muriuki Muriithi | 2022-05-31 14:41:22 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-05-31 14:41:45 +0300 |
commit | b8a51a5d77175f8b88583a06a0ce7e2792bc501f (patch) | |
tree | 5ef99bcce0ec1df816960aed432c8047fa326bdd | |
parent | 45f7328e733fa655e7871d3c841c2dc778915d36 (diff) | |
download | genenetwork2-b8a51a5d77175f8b88583a06a0ce7e2792bc501f.tar.gz |
Fix minor bug
-rw-r--r-- | wqflask/wqflask/templates/partial_correlations/pcorrs_results_presentation.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/partial_correlations/pcorrs_results_presentation.html b/wqflask/wqflask/templates/partial_correlations/pcorrs_results_presentation.html index fd534188..dac02397 100644 --- a/wqflask/wqflask/templates/partial_correlations/pcorrs_results_presentation.html +++ b/wqflask/wqflask/templates/partial_correlations/pcorrs_results_presentation.html @@ -193,7 +193,7 @@ </thead> <tbody> - {%for trait in enumerate(correlations, start=1):%} + {%for idx, trait in enumerate(correlations, start=1):%} <tr class="results-row"> <td> <input type="checkbox" name="chk_{{trait['trait_name']}}" |