aboutsummaryrefslogtreecommitdiffstats
path: root/account
diff options
context:
space:
mode:
Diffstat (limited to 'account')
-rw-r--r--account/templates/account/list_approved.html9
1 files changed, 6 insertions, 3 deletions
diff --git a/account/templates/account/list_approved.html b/account/templates/account/list_approved.html
index 4bae4a2..3fbe2a2 100644
--- a/account/templates/account/list_approved.html
+++ b/account/templates/account/list_approved.html
@@ -1,6 +1,7 @@
{% extends 'base.html' %}
{% load staticfiles %}
{% load url from future %}
+{% load i18n %}
{% load bootstrap3 %}
{# login template #}
@@ -17,9 +18,10 @@
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
- <th class="col-md-1">序号</th>
- <th class="col-md-3">姓名</th>
- <th class="col-md-8">单位</th>
+ <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>
@@ -28,6 +30,7 @@
<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 %}