3d1c44b45f284f9da355230cf0d25fafd2dfe76d
[myslice.git] / plugins / filter_status / templates / filter_status.html
1 <div id="{{ domid }}" class="sl-filter-resources">
2   <span class="list-group-item-heading sl-resources">View:</span>
3   
4   <a href="#" 
5      class="list-group-item sl-resources active" 
6      style='display: inline-block !important; font-size: inherit;' 
7      id="{{ domid }}__all" 
8      data-status="all"
9          title="View resources that are available to be reserved."
10          rel='tooltip'>
11         Available
12   </a>
13   
14   <a href="#"
15      class="list-group-item sl-resources" 
16      style='display: inline-block !important; font-size: inherit;' 
17      id="{{ domid }}__reserved" 
18      data-status="reserved"
19      title="View resources that you have previously reserved for the slice."
20          rel='tooltip'>
21         Reserved
22   </a>
23   
24   <a href="#" class="list-group-item sl-resources"
25      style='display: inline-block !important; font-size: inherit; width:130px;' 
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 next to the checkbox for more details."
29      rel='tooltip'>
30         Unconfigured
31         <span class="badge" id="badge-unconfigured" style="display:none;"></span>
32   </a>
33   
34   <a href="#" class="list-group-item sl-resources" 
35      style='display: inline-block !important; font-size: inherit;' 
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, or on the Cancel button to cancel them."
39      rel='tooltip'>
40         Pending
41         <span class="badge" id="badge-pending" style="display:none;"></span>
42   </a>
43 </div>