Scheduler: adding/removing resources enforce warnings and recount number of unconfigu...
[myslice.git] / portal / templates / usersview.html
1 {% extends "layout.html" %}
2 {% block content %}
3
4 <h1>MySlice Users</h1>
5 <div id="middle" align="center">
6     <div class="well">
7         <table class="mytable table table-bordered table-hover">
8             <tr class="odd">
9                 <th>Email</th>
10                                 <th>Authority</th>
11                 <th>Status</th>
12             </tr>
13             {% for user in user_list %}
14             <tr class="border_bottom">
15                 <td class="odd">
16                                         <a href="/portal/user/{{user.email}}"><span class="glyphicon glyphicon-search"></span></a>      
17                                         {{ user.email }} 
18                                 </td>
19                                 <td class="odd"> {{ user.authority }} </td>
20                                 <td class="even"> {{ user.status }} </td>
21             </tr>
22             {%endfor%}
23         </table>
24     </div>
25 </div>
26 </div>
27
28 {% endblock %}