~rvb/maas/bug-1384001-redux-1.7

« back to all changes in this revision

Viewing changes to src/maasserver/templates/maasserver/node_list.html

  • Committer: Raphael Badin
  • Date: 2012-01-16 08:33:18 UTC
  • Revision ID: raphael.badin@canonical.com-20120116083318-2ntniy6eirey3drl
Initial commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "maasserver/base.html" %}
 
2
 
 
3
{% block content %}
 
4
  <h2>Nodes</h2>
 
5
  <ul>
 
6
    {% for node in node_list %}
 
7
      <li>{{ node.name }}</li>
 
8
    {% empty %}
 
9
      <li>No nodes</li>
 
10
    {% endfor %}
 
11
  </ul>
 
12
  <a href="{% url node-create %}">Create a node</a>
 
13
{% endblock %}