summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/infrastructure/templates/infrastructure/base_detail.html
blob: 5fe690219696180c8b8fdb68ed3308805c02fc25 (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
26
27
28
29
30
31
32
33
34
35
36
{% extends 'infrastructure/base.html' %}

{% block main %}

<div class="row-fluid">
  <div class="span12">
    {% block breadcrumbs %}{% endblock %}

    <div class="pull-right btn-toolbar">
      {% block actions %}{% endblock %}
    </div>

    <h3>{% block name %}{% endblock %}</h3>
  </div>
</div>

<div class="row-fluid">
  <div class="span12">
    <div class="pull-right">
      {% block overall_usage %}{% endblock %}
    </div>

    {{ tab_group.render }}
  </div>
</div>

<script type="text/javascript" charset="utf-8">
  if(typeof horizon.Capacity !== 'undefined') {
    horizon.Capacity.init();
  } else {
    addHorizonLoadEvent(function() {
      horizon.Capacity.init();
    });
  }
</script>
{% endblock %}