diff options
author | Hao Chen | 2019-05-14 04:49:50 -0500 |
---|---|---|
committer | Hao Chen | 2019-05-14 04:49:50 -0500 |
commit | f899658ee09651f318abbdbb2bd6a0dcf1daec72 (patch) | |
tree | b484d4100c7b987c57141ee767ff2ac082fb2c51 /templates | |
parent | 5a264b6d58fa55714b5c844830dc7d42d8d303b1 (diff) | |
download | genecup-f899658ee09651f318abbdbb2bd6a0dcf1daec72.tar.gz |
add a column for messages
Diffstat (limited to 'templates')
-rw-r--r-- | templates/cytoscape.html | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/templates/cytoscape.html b/templates/cytoscape.html index e837e0c..98968c8 100644 --- a/templates/cytoscape.html +++ b/templates/cytoscape.html @@ -3,7 +3,20 @@ <script src="https://cdnjs.cloudflare.com/ajax/libs/cytoscape/3.6.0/cytoscape.min.js" integrity="sha256-uZV2wRlscgr52q3Wb3Oew0rKCPsM3g4aBTv46sF4qzg=" crossorigin="anonymous"></script> - <div id="cy"></div> + +<div class="row"> + <div class="column left" > + +<h4> {{ message |safe}} </h4> + </div> + + <div class="column right"> + + {{ message2 |safe}} +</div> + + + <div id="cy"></div> <script> var cy = cytoscape({ container: document.getElementById('cy'), @@ -89,4 +102,5 @@ }); </script> + {% endblock %} |