Line | |
---|
1 | {% extends "exodus_template.html" %}
|
---|
2 |
|
---|
3 | {% block content %}
|
---|
4 |
|
---|
5 | <h1> add an interlink </h1>
|
---|
6 |
|
---|
7 | <form method="post" action=".">
|
---|
8 | <div>
|
---|
9 | <label for="id_status">Status:</label> {{ form1.status }}
|
---|
10 | {% if form1.status.errors %} *** {{ form1.status.errors|join:", " }}{% endif %}
|
---|
11 | </div>
|
---|
12 | <div>
|
---|
13 | <label for="id_iface1">Iface 1:</label> {{ form1.iface }}
|
---|
14 | </div>
|
---|
15 | <div>
|
---|
16 | <label for="id_iface2">Iface 2:</label> {{ form2.iface }}
|
---|
17 | </div>
|
---|
18 | <input type="submit" value="submit">
|
---|
19 | </form>
|
---|
20 |
|
---|
21 | {% endblock %}
|
---|
Note:
See
TracBrowser
for help on using the repository browser.