-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpage-module-club-members.php
28 lines (28 loc) · 1 KB
/
page-module-club-members.php
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
<?php namespace ProcessWire;?>
<div class="content content--padded">
<?
$members = $users->find('clubMemberID!=, sort=clubMemberID')
?>
<table>
<thead>
<tr>
<th>Avatar</th>
<th>Nick</th>
<th>Mitglied seit</th>
<th>Aufgabengebiet</th>
<th>Funktion</th>
</tr>
</thead>
<tbody>
<? foreach($members as $member): ?>
<tr>
<td><img class="avatar avatar--small avatar--round" src="<?=$member->getAvatar()?>" alt=""></td>
<td><a href="<?=$config->urls->root?>users/<?=$member->name?>"><?=$member->username?></a></td>
<td><?=$member->clubEntryDate?></td>
<td><?=$member->clubMembershipType?></td>
<td><?=$member->clubFunction?></td>
</tr>
<? endforeach; ?>
</tbody>
</table>
</div>