summaryrefslogtreecommitdiffstats
path: root/templates/group.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/group.html')
-rw-r--r--templates/group.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/group.html b/templates/group.html
index 16f62ed..9c53c90 100644
--- a/templates/group.html
+++ b/templates/group.html
@@ -41,12 +41,17 @@
<table class="table table-hover">
<tr>
<th class="col-sm-3">username</th>
- <th class="col-sm-9 text-center">mail</th>
+ <th class="col-sm-6 text-center">mail</th>
+ <th class="col-sm-3">&nbsp;</th>
</tr>
{% endif %}
<tr>
<td>{{member.user.username}}</td>
<td class="text-center">{{member.user.email}}</td>
+ <td class="text-right">
+ <a href="{{ url_for('group_join', group_name=group.name, member_id=member.id, accept='yes') }}" class="btn btn-xs btn-success">Accept</a>
+ <a href="{{ url_for('group_join', group_name=group.name, member_id=member.id, accept='no') }}" class="btn btn-xs btn-danger">Reject</a>
+ </td>
</tr>
{% if loop.last %}
</table>