source: CenterRegistry/trunk/templates/center/lista.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 
3{% block "extrahead" %}
4        <style type="text/css">
5                .col0 { width: 8em; }
6                .col1 { width: 8em; }
7                .col2 { width: 20em; }
8                .col3 { width: 8em; }
9                .col4 { width: 14em; }
10        </style>
11{% endblock %}
12
13{% block "maincontent" %}
14
15Group by: <a href="?group_by=NacCon"> National Consortium</a> - <a href="?group_by=country">Country</a> -
16          <a href="?group_by=typeCenter"> Center Type</a> 
17
18<br>
19<table border=1 class="bgcolor1" cellspacing=0 cellpadding=6  width="90%" >
20        <tr>
21            <td width="220" height="18" align="left"><b>Center</b></td>
22            <td width="120" align="links"><b>Repository</b></td>
23            <td width="120" align="links" title="Status"><b>Status</b></td>
24            <td width="100" align="links" title="Country/Fed"><b>National Consortium</b></td>
25            <td width="100" align="links"><b>Metadata</b></td>
26            <td width="100" align="links"><b><a href="http://www.clarin.eu/category/glossary/aai"><acronym title="Authentication and Authorization Infrastructure">AAI</acronym></a></b></td>
27            <td width="100" align="left" title="Persistent Identifier"><b><a href="http://www.clarin.eu/category/glossary/pid"> PID</a></b></td>
28            <td width="100" align="left" title="Self-assessment round 2"><b>Assessment</b></td>
29            <br> </tr>
30        {% for center in centers_list %}
31        <tr>
32        <td> <a href="/centers/{{ center.id }}" >{{center.name}}</a></td>
33        <td> {{center.repositorySystem}} </td>
34        <td> {{center.typeStatus}} </td>
35        <td> <table  border=0  cellspacing=0 cellpadding=6  width="100%" >   
36             {% for choice in center.clarinfed.all %}
37        <tr> <td width="90"> <a href="{{choice.MemberFed.webseite}}">   {{choice.MemberFed}}  </tr>
38        {% endfor %} </td>
39        </table></td>   
40        <td> 
41        <table  border=0  cellspacing=0 cellpadding=6  width="100%" >     
42        <!--  oldversion
43        {% for choice in center.metadata.all %}
44        <tr>    <td width="90">  {{choice.WebServicesSet}}</td>  </tr>
45        <tr>    <td  width="300">  {{choice.OAI_accespoint}} </td> </tr>
46        {% endfor %} --> 
47       
48        {% for choice in center.metadata.all %}
49        <tr><td width="90"> <a href="{{choice.OAI_accespoint}}">   {{choice.CMschema}}
50           {% for choice2 in choice.schema.all %}
51       , {{choice2.name}}
52       {% endfor %}  </a> 
53        {% endfor %}
54    </table></td>       
55<!--    <td> {{centermetadata.WebServicesType}} </td>  -->
56        <td>{{center.aaiStatus}}</td>
57        <td>{{center.pidStatus}}</td>
58        <td>{{center.assesmentstatus}}</td>
59       
60    </tr>
61        {% endfor %}
62</table>       
63{% endblock %}
Note: See TracBrowser for help on using the repository browser.