|
|
|
|
@ -182,18 +182,17 @@ |
|
|
|
|
<table style="width: 100%; border-collapse: collapse;"> |
|
|
|
|
<thead> |
|
|
|
|
<tr style="border-bottom: 2px solid #dee2e6;"> |
|
|
|
|
<th style="padding: 8px 12px; text-align: left;">Name</th> |
|
|
|
|
<th style="padding: 8px 12px; text-align: left;">Email</th> |
|
|
|
|
<th style="padding: 8px 12px; text-align: left;">Origin</th> |
|
|
|
|
<th style="padding: 8px 12px; text-align: left;">Name</th> |
|
|
|
|
<th style="padding: 8px 12px; text-align: left;">Club</th> |
|
|
|
|
<th style="padding: 8px 12px; text-align: left;">Date Joined</th> |
|
|
|
|
<th style="padding: 8px 12px; text-align: left;">Email</th> |
|
|
|
|
<th style="padding: 8px 12px; text-align: left;">Phone</th> |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
|
{% for user in recent_app_users %} |
|
|
|
|
<tr style="border-bottom: 1px solid #dee2e6;"> |
|
|
|
|
<td style="padding: 8px 12px;">{{ user.first_name }} {{ user.last_name }}</td> |
|
|
|
|
<td style="padding: 8px 12px;">{{ user.email }}</td> |
|
|
|
|
<td style="padding: 8px 12px;"> |
|
|
|
|
{% if user.origin == 0 %} |
|
|
|
|
<span style="padding: 2px 6px; background: #6c757d; color: white; border-radius: 4px; font-size: 12px;">Admin</span> |
|
|
|
|
@ -205,8 +204,11 @@ |
|
|
|
|
<span style="padding: 2px 6px; background: #6c757d; color: white; border-radius: 4px; font-size: 12px;">Unknown</span> |
|
|
|
|
{% endif %} |
|
|
|
|
</td> |
|
|
|
|
<td style="padding: 8px 12px;">{{ user.first_name }} {{ user.last_name }}</td> |
|
|
|
|
<td style="padding: 8px 12px;">{{ user.latest_event_club_name }}</td> |
|
|
|
|
<td style="padding: 8px 12px;">{{ user.date_joined|date:"M d, Y H:i" }}</td> |
|
|
|
|
<td style="padding: 8px 12px;">{{ user.email }}</td> |
|
|
|
|
<td style="padding: 8px 12px;">{{ user.phone }}</td> |
|
|
|
|
</tr> |
|
|
|
|
{% empty %} |
|
|
|
|
<tr> |
|
|
|
|
|