From cb6ae1cf44f628a81fb0a6516d6491e53ac2db2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20=20MENAGER?= <herve.menager@pasteur.fr> Date: Sun, 22 Jul 2018 12:37:14 +0200 Subject: [PATCH] correct nb_aromatic_sssr and nb_rotatable_bonds in compounds list there were typos in the "display columns" field of the table display Former-commit-id: 7d6a0d8ee0d52c5063f17de8ba2bb20a1c4fae62 --- ippisite/ippidb/templates/compound_t_list.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ippisite/ippidb/templates/compound_t_list.html b/ippisite/ippidb/templates/compound_t_list.html index 81a0e969..c84cacbb 100644 --- a/ippisite/ippidb/templates/compound_t_list.html +++ b/ippisite/ippidb/templates/compound_t_list.html @@ -106,7 +106,10 @@ <label><input type="checkbox" name="field" value="tpsa" class="mr-1" {% if 'tpsa' in fields %}checked="checked"{% endif %} />Topological Polar Surface Area (TPSA)</label> </div> <div class="row"> - <label><input type="checkbox" name="field" value="nb_rotatable_bonds" class="mr-1" {% if 'tpsa' in fields %}checked="checked"{% endif %} />Number of rotatable bonds</label> + <label><input type="checkbox" name="field" value="nb_rotatable_bonds" class="mr-1" {% if 'nb_rotatable_bonds' in fields %}checked="checked"{% endif %} />Number of rotatable bonds</label> + </div> + <div class="row"> + <label><input type="checkbox" name="field" value="nb_aromatic_sssr" class="mr-1" {% if 'nb_aromatic_sssr' in fields %}checked="checked"{% endif %} />Number of aromatic Smallest Set of System Rings (SSSR)</label> </div> <div class="row"> <label><input type="checkbox" name="field" value="families" class="mr-1" {% if 'families' in fields %}checked="checked"{% endif %} />PPI families</label> -- GitLab