source: CenterRegistry/trunk/templates/center/centers_sort_bycountry.html @ 4266

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

upgrade sort countries and aai

File size: 2.3 KB
Line 
1{% extends "center/base.html" %}
2{% load center_extra %}
3
4
5{% block "extrahead" %}
6        <style type="text/css">
7                .col0 { width: 8em; }
8                .col1 { width: 8em; }
9                .col2 { width: 20em; }
10                .col3 { width: 8em; }
11                .col4 { width: 14em; }
12        </style>
13{% endblock %}
14
15{% block "maincontent" %}
16<h2>List of Centers sorted by {{group_by}}</h2> 
17Group by: <a href="?group_by=NacCon"> National Consortium</a> - <a href="?group_by=country">Country</a> -
18          <a href="?group_by=typeCenter"> Center Type</a> 
19<br>
20  {% for pais in group_list %}
21        <a href="#{{ pais }}"> {{ pais }} </a> ,
22  {% endfor %} 
23
24{% for pais in group_list %}   
25<br> <a name="{{pais}}"></a> <br>
26  <h2> {{pais}}</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 centers|get_item:pais %}
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">       {% for choice in center.clarinfed.all %}
44                                         <a href="{{choice.MemberFed.webseite}}"> {{choice.MemberFed}} </a>
45                                {% endfor %} </td>
46        <td class="col1">       {% for choice in center.metadata.all %}
47                                         <a href="{{choice.OAI_accespoint}}">   {{choice.CMschema}}
48                                                 {% for choice2 in choice.schema.all %}
49                                                , {{choice2.name}}
50                                         {% endfor %}  </a> 
51                                        {% endfor %} </td>
52        <td class="col1">{{center.aaiStatus}}</td>
53        <td class="col1">{{center.pidStatus}}</td>
54        <td class="col0">{{center.assesmentstatus}}</td>
55    </tr>
56    {% endfor %}
57 </table>       
58{% endfor %}
59
60 
61{% endblock %}
Note: See TracBrowser for help on using the repository browser.