source: CenterRegistry/trunk/templates/center/type_centers.html @ 2895

Last change on this file since 2895 was 2895, checked in by BSanchezRZG, 11 years ago

Update with sorting choice

File size: 2.5 KB
Line 
1{% extends "center/base.html" %}
2{% block "extrahead" %}
3        <style type="text/css">
4                .col0 { width: 4em; }
5                .col1 { width: 8em; }
6                .col2 { width: 20em; }
7                .col3 { width: 8em; }
8                .col4 { width: 14em; }
9        </style>
10{% endblock %}
11{% block "maincontent" %}
12
13<h2>List of  Centers sorted by {{group_by}}</h2> 
14Group by: <a href="?group_by=NacCon"> National Consortium</a> - <a href="?group_by=country">Country</a> -
15          <a href="?group_by=typeCenter"> Center Type</a> 
16<br>
17
18{% for key, value in centers.items%}
19 {%  if  value  %}
20        <a href="#{{ key }}"> {{ key }} </a> ,
21 {% endif %}{% endfor %}
22 
23{% for key, value in centers.items%}
24 {%  if  value  %}
25  <br> <a name="{{key}}"></a> <br>
26  <h2> {{key}}</h2> 
27       <table border=1 class="bgcolor1" cellspacing=0 cellpadding=6  width="90%" >
28        <tr>
29           <td class="col2"><b>Center</b></td>
30            <td class="col1"><b>Repository</b></td>
31            <td class="col1"><b>Status</b></td>
32            <td class="col1"><b>National Consortium</b></td>
33            <td class="col1"><b>Metadata</b></td>
34            <td class="col1"><b><a href="http://www.clarin.eu/category/glossary/aai"><acronym title="Authentication and Authorization Infrastructure">AAI</acronym></a></b></td>
35            <td class="col1"><b><a href="http://www.clarin.eu/category/glossary/pid"> PID</a></b></td>
36            <td class="col0"><b>Assessment</b></td>
37            <br> </tr>
38           {% for center in value %}
39           <tr>
40        <td class="col2"> <a href="/centers/{{ center.id }}" >{{center.name}}</a></td>
41        <td class="col1"> {{center.repositorySystem}} </td>
42        <td class="col1"> {{center.typeStatus}} </td>
43        <td class="col1"> <table  border=0  cellspacing=0 cellpadding=6  width="100%" >   
44                                                {% for choice in center.clarinfed.all %}
45                                                 <tr> <td class="col0"> <a href="{{choice.MemberFed.webseite}}"> {{choice.MemberFed}}  </tr>
46                                                {% endfor %} </td>      </table></td>   
47        <td class="col1"> <table  border=0  cellspacing=0 cellpadding=6  width="100%" >
48                                        {% for choice in center.metadata.all %}
49                                                <tr><td class="col0"> <a href="{{choice.OAI_accespoint}}">   {{choice.CMschema}}
50                                                 {% for choice2 in choice.schema.all %}
51                                                , {{choice2.name}}
52                                         {% endfor %}  </a> 
53                                        {% endfor %} </table></td>     
54        <td class="col1">{{center.aaiStatus}}</td>
55        <td class="col1">{{center.pidStatus}}</td>
56        <td class="col0">{{center.assesmentstatus}}</td>
57    </tr>
58    {% endfor %}
59 </table>       
60 {% endif %}   
61{% endfor %}
62 
63{% endblock %}
Note: See TracBrowser for help on using the repository browser.