pdu: list, create, show, delete
[osm/LW-UI.git] / instancehandler / template / instance_list_pdu.html
1 {% load get %}
2 {% load date_tag %}
3 <div class="box">
4 <div class="box-header with-border">
5 <h3 class="box-title">{{ type|upper }}</h3>
6
7 <div class="box-tools">
8 <button type="button" class="btn btn-default" data-container="body"
9 data-toggle="tooltip" data-placement="top" title="New PDU"
10 onclick="javascript:openModalCreatePDU({ 'project_id':'{{ project_id }}','vim_list_url': '{% url "vims:list" %}'})">
11 <i class="fa fa-plus"></i> <span> New PDU</span>
12 </button>
13 </div>
14
15 </div>
16 <div class="box-body">
17 <table id="instances_table" class="table table-bordered table-striped responsive" style="width:100%">
18 <thead>
19 <tr>
20 <th>Identifier</th>
21 <th>Name</th>
22 <th>Type</th>
23 <th>Usage State</th>
24 <th>Created At</th>
25 <th>Actions</th>
26 </tr>
27 </thead>
28 <tbody>
29
30 </tbody>
31 </table>
32 </div>
33 </div>