root/ossiedev/trunk/tools/cornetApps/templates/HtmlPages/waveforms.html @ 10816

Revision 10816, 472 bytes (checked in by edent, 23 months ago)

Add install/uninstall function and lists active waveforms

  • Property svn:executable set to *
Line 
1{% if availableList %}
2<h4>Available Waveforms</h4>
3<table>
4    {% for wave in availableList %}
5  <tr>
6        <td>    {{ wave.getName }} &nbsp; </td>
7    <!--<td>    <button onClick="window.location='/WebDash/{{ wave.getName }}/install/'">Install</button> </td>-->
8    <td>    <button onClick="javascript:install('{{ wave.getName }}');">Install</button> </td>
9    {% endfor %}
10  </tr>
11 </table>
12{% else %}
13        <p>No available waveforms. Check if nodebooter is running.</p>
14{% endif %}
Note: See TracBrowser for help on using the browser.