blob: b78beb753381cd2fecad345438a20b7477427aa9 (
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
|
{% extends "base.html" %}
{% block content %}
<div class="hero-unit">
<h1>Gentoo Foundation Members List</h1>
<p>List of active Foundation members.</p>
</div>
<div class="row">
<div class="span10">
<h2>Foundation Members</h2><br />
<table class="table table-striped sortable" >
<tr>
<td class="infohead"><b>Username</b></td>
<td class="infohead"><b>Name</b></td>
<td class="infohead"><b>Location</b></td>
</tr>
{% for user in devlist %}
<tr>
<td style="color:#5c4f85;"><b>{{ user.username }}</b></td>
<td>{{ user.full_name }}</td>
<td><a href="http://maps.google.com/maps?q={{ user.location }}">{{ user.location }}</a></td>
</tr>
{% endfor %}
</table>
</div>
</div>
{% endblock %}
{# vim:se fileencoding=utf8 et ts=4 sts=4 sw=4 ft=htmldjango : #}
|