Show
Ignore:
Timestamp:
04/04/12 17:07:03 (14 months ago)
Author:
edent
Message:

add ports and ip when loading node

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ossiedev/branches/jsnyder/trunk/tools/cornetApps/templates/WebDash/index.html

    r11012 r11092  
    33 
    44{% if availableList %} 
    5 <table> 
    6  
    7      
    8      
    9     {% for wave in availableList %} 
    10         <tr> 
    11         <td>    {{ wave.getName }} &nbsp; </td> 
    12     <td>    <button onClick='javascript:install("{{ wave.getName }}");'>Install</button> </td> 
    13     {% endfor %} 
    14     </tr> 
    15     
    16  </table> 
     5        <table> 
     6            {% for wave in availableList %} 
     7                <tr> 
     8                <td>    {{ wave.getName }} &nbsp; </td> 
     9            <td>    <button onClick='javascript:install("{{ wave.getName }}");'>Install</button> </td> 
     10            {% endfor %} 
     11            </tr> 
     12            
     13         </table> 
    1714<!-- 
    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>&nbsp;</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>&nbsp;</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--> 
    3229{% else %} 
    3330    <p>No waveforms are available.</p> 
    3431{% endif %} 
    35 --> 
    3632{%endblock%} 
    3733