Merge "Adds Libvirt Handler"
[pharos.git] / tools / pharos-dashboard / src / templates / dashboard / table.html
1 {% extends "base.html" %}
2 {% load staticfiles %}
3
4 {% block extrahead %}
5     <!-- DataTables CSS -->
6     <link href="{% static "bower_components/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.css" %}"
7           rel="stylesheet">
8
9     <!-- DataTables Responsive CSS -->
10     <link href="{% static "bower_components/datatables-responsive/css/dataTables.responsive.css" %}" rel="stylesheet">
11 {% endblock extrahead %}
12
13 {% block content %}
14     <div class="row">
15         <div class="col-lg-12">
16                     <div class="dataTables_wrapper">
17                         <table class="table table-striped table-bordered table-hover" id="table" cellspacing="0"
18                                width="100%">
19
20                             {% block table %}
21                             {% endblock table %}
22
23                         </table>
24                     </div>
25                     <!-- /.table-responsive -->
26                 <!-- /.panel-body -->
27             <!-- /.panel -->
28         </div>
29         <!-- /.col-lg-12 -->
30     </div>
31 {% endblock content %}
32
33 {% block extrajs %}
34     <!-- DataTables JavaScript -->
35
36     <script src={% static "bower_components/datatables/media/js/jquery.dataTables.min.js" %}></script>
37     <script src={% static "bower_components/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.min.js" %}></script>
38
39     <script src={% static "js/dataTables-sort.js" %}></script>
40
41     {% block tablejs %}
42     {% endblock tablejs %}
43 {% endblock extrajs %}