diff options
author | Jayaram R Pai | 2014-09-09 19:19:12 +0530 |
---|---|---|
committer | Jayaram R Pai | 2014-09-09 19:19:12 +0530 |
commit | 87abcafdc82e35b211a40bca96c609093eaa1c84 (patch) | |
tree | 027a28638e9660e18c98ebbc67f1161d7dd879a4 /static/website/templates | |
parent | 2f78005613b149d7eccb16d1f3bb55f2b20a2db9 (diff) | |
download | scilab-on-cloud-87abcafdc82e35b211a40bca96c609093eaa1c84.tar.gz scilab-on-cloud-87abcafdc82e35b211a40bca96c609093eaa1c84.tar.bz2 scilab-on-cloud-87abcafdc82e35b211a40bca96c609093eaa1c84.zip |
added contributor details display
Diffstat (limited to 'static/website/templates')
-rw-r--r-- | static/website/templates/ajax-contributor.html | 21 | ||||
-rw-r--r-- | static/website/templates/index.html | 10 |
2 files changed, 28 insertions, 3 deletions
diff --git a/static/website/templates/ajax-contributor.html b/static/website/templates/ajax-contributor.html new file mode 100644 index 0000000..a3ab2dc --- /dev/null +++ b/static/website/templates/ajax-contributor.html @@ -0,0 +1,21 @@ +<h6><u>Contributor details</u></h6> +<table> + <tbody> + <tr> + <td>Contributor name</td> + <td>{{ proposal.full_name }}</td> + </tr> + <tr> + <td>Mentor</td> + <td>{{ proposal.faculty }}</td> + </tr> + <tr> + <td>Book Reviewer</td> + <td>{{ proposal.reviewer }}</td> + </tr> + <tr> + <td>College</td> + <td>{{ proposal.university }}</td> + </tr> + </tbody> +</table> diff --git a/static/website/templates/index.html b/static/website/templates/index.html index 31d028c..ee58a95 100644 --- a/static/website/templates/index.html +++ b/static/website/templates/index.html @@ -105,9 +105,13 @@ </div> <!-- /#content-inner --> </div> <!-- /#content-wrapper --> - <div id="lightbox-me-wrapper"> - <div id="lightbox-me"></div> - </div> <!-- /#lightbox-me-wrapper --> + <div id="plotbox-wrapper"> + <div id="plotbox"></div> + </div> <!-- /#plotbox-wrapper --> + + <div id="databox-wrapper"> + <div id="databox"></div> + </div> <!-- /#databox-wrapper --> <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script> <script src="{% static '/static/dajax/jquery.dajax.core.js' %}"></script> |