summaryrefslogtreecommitdiff
path: root/template/community/userlist.html
blob: e731571b0e58742b957e0c7f74d4bbd940d58882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{%extends "nav_community.html"%}
{%block title%}Membership{%endblock%}
{%block content%}
<h1>Members</h1>
<p>
This page lists all active members of {{org_name}} (except those that
have opted out of public listing, of course). To become a member, go to
<a href="/membership/">Your Membership</a>
</p>
<ul>
{%for member in members%}
 <li>{{member.fullname}}, {{member.country}} (member since {{member.membersince}})</li>
{%endfor%}
</ul>
{%endblock%}