|
a/Allura/allura/templates/members.html |
|
b/Allura/allura/templates/members.html |
|
... |
|
... |
9 |
<thead>
|
9 |
<thead>
|
10 |
<tr>
|
10 |
<tr>
|
11 |
<th>Developer</th>
|
11 |
<th>Developer</th>
|
12 |
<th>Username</th>
|
12 |
<th>Username</th>
|
13 |
<th>Role/Position</th>
|
13 |
<th>Role/Position</th>
|
14 |
<th>Email</th>
|
|
|
15 |
</tr>
|
14 |
</tr>
|
16 |
</thead>
|
15 |
</thead>
|
17 |
{%for user in users%}
|
16 |
{%for user in users%}
|
18 |
<tr>
|
17 |
<tr>
|
19 |
<td>{{ user.display_name }}</td>
|
18 |
<td>{{ user.display_name }}</td>
|
20 |
<td><a href="{{ user.url }}">{{ user.username }}</a></td>
|
19 |
<td><a href="{{ user.url }}">{{ user.username }}</a></td>
|
21 |
<td>{% for role in user.roles%} {{ role }}</br> {%endfor%}</td>
|
20 |
<td>{{user.roles|join(', ')}}</td>
|
22 |
<td>{% for email in user.email_addresses %}{{email.replace('@', ' at ')}}{%endfor%}</td>
|
|
|
23 |
</tr>
|
21 |
</tr>
|
24 |
{%endfor%}
|
22 |
{%endfor%}
|
25 |
</table>
|
23 |
</table>
|
26 |
</div>
|
24 |
</div>
|
27 |
</div>
|
25 |
</div>
|
28 |
{% endblock %} |
26 |
{% endblock %}
|