Filter status: All, Available, Unavailable, Unconfigured, Pending, Reserved
[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 all resources."
10          rel='tooltip'>
11         All
12   </a>
13   <a href="#" 
14      class="list-group-item sl-resources" 
15      style='display: inline-block !important; font-size: inherit;' 
16      id="{{ domid }}__available" 
17      data-status="available"
18          title="View resources that are available to be reserved."
19          rel='tooltip'>
20         Available
21   </a>
22    <a href="#" 
23      class="list-group-item sl-resources" 
24      style='display: inline-block !important; font-size: inherit;' 
25      id="{{ domid }}__unavailable" 
26      data-status="unavailable"
27          title="View resources that are NOT available to be reserved."
28          rel='tooltip'>
29         Unavailable
30   </a>
31   
32   <a href="#" class="list-group-item sl-resources"
33      style='display: inline-block !important; font-size: inherit; width:130px;' 
34      id="{{ domid }}__unconfigured" 
35      data-status="unconfigured"
36      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."
37      rel='tooltip'>
38         Unconfigured
39         <span class="badge" id="badge-unconfigured" style="display:none;"></span>
40   </a>
41   
42   <a href="#" class="list-group-item sl-resources" 
43      style='display: inline-block !important; font-size: inherit;' 
44      id="{{ domid }}__pending" 
45      data-status="pending"
46      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."
47      rel='tooltip'>
48         Pending
49         <span class="badge" id="badge-pending" style="display:none;"></span>
50   </a>
51  
52   <a href="#"
53      class="list-group-item sl-resources" 
54      style='display: inline-block !important; font-size: inherit;' 
55      id="{{ domid }}__reserved" 
56      data-status="reserved"
57      title="View resources that you have previously reserved for the slice."
58          rel='tooltip'>
59         Reserved
60   </a>
61
62 </div>