blob: 5c3e2de762c3e889d6a1085d27dbfafdeafd55ed (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
{% extends "base.html" %}
{% block content %}
<div id="pageRow" class="container">
<div class="row">
<div id="page" class="span10">
{% for user in ldb_user %}
<div class="row-fluid">
<p>
<div class="span9">
<h3>Personal Information</h3><br />
<table class="table table-bordered table-striped table-condensed fixed-cell" id="yw0">
<tr class="odd"><th>Real Name</th><td>{{user.full_name}}</td></tr>
<tr class="even"><th>Nickname</th><td>{{user.username}}</td></tr>
<tr class="odd"><th>Location</th><td>{{user.location}}</td></tr>
</table>
</div>
</p>
</div>
<div class="row-fluid">
<p>
<div class="span9">
<h3>Contact Information</h3><br />
<table class="table table-bordered table-striped table-condensed fixed-cell" id="yw1">
<tr class="odd"><th>Email</th><td>
{% for mail in user.email %}
{{ mail }}<br />
{% endfor %}
</td></tr>
<tr class="even"><th>IM Nickname</th><td>
{% for im in user.im %}
{{ im }}<br />
{% endfor %}
</td></tr>
<tr class="odd"><th>GPG Fingerprint</th><td>
{% for gpg_fingerprint in user.gpg_fingerprint %}
{{ gpg_fingerprint }}<br />
{% endfor %}
</td></tr>
</table>
</div>
</p>
</div>
<div class="row-fluid">
<p>
<div class="span9">
<h3>Gentoo related Information</h3><br />
<table class="table table-bordered table-striped table-condensed fixed-cell" id="yw1">
<tr class="odd"><th>Roles</th><td>{{user.roles}}</td></tr>
<tr class="even"><th>Date Joined</th><td>
{% for jdate in user.gentoo_join_date %}
{{ jdate }}<br />
{% endfor %}
</td></tr>
<tr class="odd"><th>Recruitment Bug</th><td>
{% for devbug in user.developer_bug %}
{{ devbug }}<br />
{% endfor %}
</td></tr>
<tr class="even"><th>Mentor</th><td>
{% for mentor in user.mentor %}
{{ mentor }}<br />
{% endfor %}
</td></tr>
{% if user.gentoo_retire_date%}
<tr class="odd"><th>Retired</th><td>
{% for retired in user.gentoo_retire_date %}
{{ retired }}<br />
{% endfor %}
{% endif %}
</table>
</div>
</p>
</div>
{% endfor %}
</div>
</div>
</div>
{% endblock %}
{# vim:se fileencoding=utf8 et ts=4 sts=4 sw=4 ft=htmldjango : #}
|