| Revision c0847d6,
323 bytes
checked in by Pall Sigurdsson <palli@…>, 2 years ago
(diff) |
|
template modifications, migrating from configurator templates to objectbrowser templates
|
-
Property mode set to
100644
|
| Line | |
|---|
| 1 | {% extends "configurator/base.html" %} |
|---|
| 2 | |
|---|
| 3 | {% block title %}Characters{% endblock %} |
|---|
| 4 | |
|---|
| 5 | {% block content %} |
|---|
| 6 | <h1>Hosts</h1> |
|---|
| 7 | |
|---|
| 8 | {% if hosts %} |
|---|
| 9 | <ul> |
|---|
| 10 | {% for host in hosts %} |
|---|
| 11 | <li><a href="host/{{ host.host_name }}">{{ host.host_name }} </a></li> |
|---|
| 12 | {% endfor %} |
|---|
| 13 | </ul> |
|---|
| 14 | {% else %} |
|---|
| 15 | <p>No hosts found. </p> |
|---|
| 16 | {% endif %} |
|---|
| 17 | |
|---|
| 18 | {% endblock %} |
|---|
Note: See
TracBrowser
for help on using the repository browser.