Admin: Link to specific userpage added. Specific userpage- TODO
[unfold.git] / portal / templates / adminview.html
index 63eb3d5..f82d865 100644 (file)
 
 {% block unfold_main %}
 
-<h1>Users</h1>
+<h1>MySlice Users</h1>
 <div id="middle" align="center">
     <div class="well">
         <table class="mytable table table-bordered table-hover">
             <tr class="odd">
                 <th>Email</th>
+                               <th>Authority</th>
                 <th>Status</th>
             </tr>
             {% for user in user_list %}
             <tr class="border_bottom">
-                <td class="odd"> {{ user.email }} </td>
+                <td class="odd">
+                                       <a href="/portal/user/{{user.email}}"><span class="glyphicon glyphicon-search"></span></a>      
+                                       {{ user.email }} 
+                               </td>
+                               <td class="odd"> {{ user.authority }} </td>
                                <td class="even"> {{ user.status }} </td>
-
             </tr>
             {%endfor%}
         </table>