management requests table reorganization
authorCiro Scognamiglio <ciro.scognamiglio@cslash.net>
Mon, 15 Sep 2014 15:58:03 +0000 (17:58 +0200)
committerCiro Scognamiglio <ciro.scognamiglio@cslash.net>
Mon, 15 Sep 2014 15:58:03 +0000 (17:58 +0200)
portal/templates/management-tab-requests.html

index 48a5be0..bdac979 100644 (file)
        
        {% for authority, requests in my_authorities.items %}
        
-       <div class="col-md-12">
-               <h2>{{authority|default:"Authorities"}}</h2>
-       </div>
-       <div class="col-md-12">
         <table class="table">
           
         {% for request in requests %}
                 {% if request.allowed == 'expired' %}expired{% else %}denied{% endif %}
             {% endif %}
             </td>
-            <td><u>{{ request.type }}</u></td>
-           <td><i>{{authority|default:request.site_authority}}</i></td>
+            <td><span class="type">{{ request.type }}</span></td>
+           <td><i>{{authority}}{{request.site_authority}}</i></td>
                <td>
             {% if request.type == 'user' %}
                 <b>{{request.first_name}} {{request.last_name}}</b> &lt;<a href="mailto:{{request.email}}">{{request.email}}</a>&gt;
     
         {% endfor %}
        </table>
-       </div>
        {% endfor %}
 
 {% else %}