root/ossiedev/trunk/tools/cornetApps/templates/HtmlPages/running.html @ 10817

Revision 10817, 0.6 KB (checked in by edent, 22 months ago)

edit Jason's WebDash? app to use for the Django/JQuery interface

Line 
1{% if instancesList %}
2<!--<h1>Running Instances</h1>-->
3<table>
4        {% for instance in instancesList %}
5                <tr>
6                <td>    <a href='/WebDash/{{ instance.getName }}/display/'>{{ instance.getName }}</a>&nbsp;</td>
7                <!--<td>        <button onClick="window.location='/WebDash/{{ instance.getName }}/uninstall/'">Uninstall </button></td>-->
8                <td><button onClick="javascript:uninstall('{{ instance.getName }}');">Uninstall</button></td>
9                </tr>
10        {% endfor %}
11</table>
12{% else %}
13        <p>No waveforms are currently running.  If they should be, check if node booter is running.<p>
14{% endif %}
Note: See TracBrowser for help on using the browser.