Merge branch 'onelab' of ssh://git.onelab.eu/git/myslice into onelab
[myslice.git] / plugins / filter_status / templates / filter_status.html
1 <div id={{ domid }}>
2   <span class="list-group-item-heading">View:</span>
3   
4   <a href="#" 
5      class="list-group-item sl-platform active" 
6      style='display: inline-block !important;' 
7      id="{{ domid }}__all" 
8      data-status="all"
9          title="View resources that are available to be reserved."
10          rel='tooltip'>
11         <p class="list-group-item-heading">Available</p>
12   </a>
13   
14   <a href="#"
15      class="list-group-item sl-platform" 
16      style='display: inline-block !important;' 
17      id="{{ domid }}__reserved" 
18      data-status="reserved"
19      title="View resources that you have previously reserved for the slice."
20          rel='tooltip'>
21         <p class="list-group-item-heading">Reserved</p>
22   </a>
23   
24   <a href="#" class="list-group-item sl-platform"
25      style='display: inline-block !important;' 
26      id="{{ domid }}__unconfigured" 
27      data-status="unconfigured"
28      title="View resources that you have selected to add to your slice, that require configuration before they can be reserved. Hover you mouse over the symbol aside the checkbox for more details."
29      rel='tooltip'>
30         <p class="list-group-item-heading">Unconfigured</p>
31         <span class="badge" id="badge-unconfigured" style="display:none;"></span></a>
32   </a>
33   
34   <a href="#" class="list-group-item sl-platform" 
35      style='display: inline-block !important;' 
36      id="{{ domid }}__pending" 
37      data-status="pending"
38      title="View pending changes to your slice, resources that you have selected to add, and resources that you have selected to remove. Click on the Apply button to apply those changes, and on the Cancel button to cancel them."
39      rel='tooltip'>
40         <p class="list-group-item-heading">Pending</p>
41         <span class="badge" id="badge-pending" style="display:none;"></span></a>
42   </a>
43 </div>