Last change
on this file since 6175 was 6175, checked in by roland, 17 years ago |
added readme information for django
|
File size:
746 bytes
|
Rev | Line | |
---|
| 1 | {% extends "exodus_template.html" %}
|
---|
| 2 |
|
---|
| 3 | {% block content %}
|
---|
| 4 |
|
---|
| 5 | <h1>Create a Node</h1>
|
---|
| 6 |
|
---|
| 7 | <form method="post" action=".">
|
---|
| 8 | <div>
|
---|
| 9 | <label for="id_name">Node Name:</label> {{ form.name }}
|
---|
| 10 | {% if form.name.errors %} *** {{ form.name.errors|join:", " }}{% endif %}
|
---|
| 11 | </div>
|
---|
| 12 | <div>
|
---|
| 13 | <label for="id_location">Node Location:</label> {{ form.location}}
|
---|
| 14 | {% if form.location.errors %} *** {{ form.location.errors|join:", " }}{% endif %}
|
---|
| 15 | </div>
|
---|
| 16 | <div>
|
---|
| 17 | <label for="id_status">Node Status:</label> {{ form.status }}
|
---|
| 18 | {% if form.status.errors %} *** {{ form.status.errors|join:", " }}{% endif %}
|
---|
| 19 | </div>
|
---|
| 20 | <div>
|
---|
| 21 | {% if form.masterip.errors %} *** MasterIP {{ form.masterip.errors|join:", " }} {% endif %}
|
---|
| 22 | </div>
|
---|
| 23 | <input type="submit" value="submit">
|
---|
| 24 | </form>
|
---|
| 25 |
|
---|
| 26 | {% endblock %}
|
---|
Note:
See
TracBrowser
for help on using the repository browser.