diff options
author | Zachary Sloan | 2012-09-20 16:34:53 -0500 |
---|---|---|
committer | Zachary Sloan | 2012-09-20 16:34:53 -0500 |
commit | cfa479050353787e8bd2501c7a63b46a1f3b8e64 (patch) | |
tree | 3ecfb390ad61dd1d5baa7f0f60b44bd62315a553 /wqflask | |
parent | 5fb161ed9accc49f3d36671809a017ed21657ed0 (diff) | |
download | genenetwork2-cfa479050353787e8bd2501c7a63b46a1f3b8e64.tar.gz |
Put the tables in the trait data/analysis page side by side
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/templates/trait_data_and_analysis.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/wqflask/wqflask/templates/trait_data_and_analysis.html b/wqflask/wqflask/templates/trait_data_and_analysis.html index 1f33dee5..4d7ec58e 100644 --- a/wqflask/wqflask/templates/trait_data_and_analysis.html +++ b/wqflask/wqflask/templates/trait_data_and_analysis.html @@ -1243,9 +1243,10 @@ the <strong>Hide Outliers</strong> button,<br> and samples with no value (x) can be hidden by clicking <strong>Hide No Value</strong> .</span><br> </div><br> - + + <div style="width:80%;margin:0;padding:0;border:none;"> {% for strain_type in (primary_strains, other_strains) %} - <div id="{{ strain_type[0]['this_id'].lower().partition('_')[0] }}"> {# Slightly tortuous, but best way to get the id we need #} + <div id="{{ strain_type[0]['this_id'].lower().partition('_')[0] }}" style="float:left;width:50%;"> {# Slightly tortuous, but best way to get the id we need #} <table class="not_tablesorter" {# Todo: Turn tablesorter back on #} id="{{ 'sortable%i' % (loop.index) }}" cellpadding="0" cellspacing="0"> @@ -1293,10 +1294,8 @@ </table> </div> - <div> - - </div> {% endfor %} + </div> </div> </td> </tr> |