blob: bf6bf2f88ac3534cb72f10e523bd8640ad519fe1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{% extends 'base.html' %}
{% load staticfiles %}
{% load url from future %}
{% load i18n %}
{% load bootstrap3 %}
{# template to show the approved user list #}
{% block title %}
审定名单 | 2014 SKA Summer School
{% endblock %}
{% block content %}
<div class="container">
<h2>审定名单</h2>
<br>
{% if object_list %}
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th class="col-md-1 list-number">序号</th>
<th class="col-md-2 list-name">姓名</th>
<th class="col-md-2 list-identify">身份</th>
<th class="col-md-7 list-institute">单位</th>
</tr>
</thead>
<tbody>
{# mark out current user if approved #}
{% for profile in object_list %}
<tr{% if profile.user == user %} class="success"{% endif %}>
<td>{{ forloop.counter }}</td>
<td>{{ profile.realname }}</td>
<td>{% trans profile.get_identify_value %}</td>
<td>{{ profile.institute }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<p>(注:按注册先后排序)</p>
{% else %}
<div class="alert alert-warning">
审核正在进行,请稍后查询……
</div>
{% endif %}
</div>
{% endblock %}
{# vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=htmldjango.html: #}
|