~smoser/ubuntu/trusty/maas/lp-1172566

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez
  • Date: 2014-04-03 13:45:02 UTC
  • mto: This revision was merged to the branch mainline in revision 58.
  • Revision ID: package-import@ubuntu.com-20140403134502-8a6wvuqwyuekufh0
Tags: upstream-1.5+bzr2227
Import upstream version 1.5+bzr2227

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<tr class="cluster {{ cycle }}"
2
 
    id="{{ cluster.uuid }}">
3
 
  <td>
4
 
    {{ cluster.cluster_name }}
5
 
    {% if cluster.bootimage_set.count == 0 %}
6
 
      <span class="warning">(Warning: this cluster has no boot images.)</span>
7
 
    {% endif %}
8
 
  </td>
9
 
  <td class="icon-controls">
10
 
    <a href="{% url 'cluster-edit' cluster.uuid %}"
11
 
       class="icon"
12
 
       title="Edit cluster {{ cluster.cluster_name }}">
13
 
      <img src="{{ STATIC_URL }}img/edit.png"
14
 
           alt="edit"
15
 
           class="space-right-small" />
16
 
    </a>
17
 
    <a title="Delete cluster {{ cluster.cluster_name }}"
18
 
       href="{% url 'cluster-delete' cluster.uuid %}">
19
 
       <img src="{{ STATIC_URL }}img/delete.png" alt="delete" />
20
 
    </a>
21
 
  </td>
22
 
</tr>