summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/syspanel/templates/syspanel/flavors/_list.html
blob: e2fe3df23aeea0b1448b0093e61dc5623ed2d4c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{%load i18n%}
<table class="wide">
  <tr>
    <th>{% trans "Id"%}</th>
    <th>{% trans "Name"%}</th>
    <th>{% trans "VCPUs"%}</th>
    <th>{% trans "Memory"%}</th>
    <th>{% trans "Disk"%}</th>
    <th>{% trans "Actions"%}</th>
  </tr>
  {% for flavor in flavors %}
    <tr id="{{flavor.id}}" class="{% cycle 'odd' 'even' %}">
      <td>{{flavor.id}}</td>
      <td>{{flavor.name}}</td>
      <td>{{flavor.vcpus}}</td>
      <td>{{flavor.ram}}MB</td>
      <td>{{flavor.disk}}GB</td>
      <td id="actions">
        <ul>
          <li class="form">{% include "syspanel/flavors/_delete.html" with form=delete_form %}</li>
        </ul>
      </td>
    </tr>
  {% endfor %}
</table>