root/ossiedev/branches/jsnyder/trunk/tools/cornetApps/templates/HtmlPages/running.html @ 11093

Revision 11093, 0.7 KB (checked in by edent, 14 months ago)

move divs around and connect to webServer from local development

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=
9                        'javascript:loadHrefToDiv("#apps","{{MEDIA_URL}}/WebDash/uninstall/{{ instance.getName }}/");
10                                                loadHrefToDiv("#apps","{{MEDIA_URL}}/WebDash/running/");'>
11                        Uninstall</button></td>
12                </tr>
13        {% endfor %}
14</table>
15{% else %}
16        <p>No waveforms are currently running.  If they should be, check if node booter is running.<p>
17{% endif %}
Note: See TracBrowser for help on using the browser.