| 18 | | {% if instancesList %} |
| 19 | | <h1>Running Instances</h1> |
| 20 | | <table> |
| 21 | | {% for instance in instancesList %} |
| 22 | | <tr> |
| 23 | | <td> <a href='/~webdemo/django/WebDash/{{ instance.getName }}/display/'>{{ instance.getName }}</a> </td> |
| 24 | | <td> <button onClick="window.location='/~webdemo/django/WebDash/uninstall/{{ instance.getName }}/'">Uninstall </button></td> |
| 25 | | </tr> |
| 26 | | {% endfor %} |
| 27 | | </table> |
| 28 | | {% else %} |
| 29 | | <p>No waveforms currently running.<p> |
| 30 | | {% endif %} |
| 31 | | |
| | 15 | {% if instancesList %} |
| | 16 | <h1>Running Instances</h1> |
| | 17 | <table> |
| | 18 | {% for instance in instancesList %} |
| | 19 | <tr> |
| | 20 | <td> <a href='/~webdemo/django/WebDash/{{ instance.getName }}/display/'>{{ instance.getName }}</a> </td> |
| | 21 | <td> <button onClick="window.location='/~webdemo/django/WebDash/uninstall/{{ instance.getName }}/'">Uninstall </button></td> |
| | 22 | </tr> |
| | 23 | {% endfor %} |
| | 24 | </table> |
| | 25 | {% else %} |
| | 26 | <p>No waveforms currently running.<p> |
| | 27 | {% endif %} |
| | 28 | --> |