summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/group.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/group.html b/templates/group.html
index 9cbd832..faf75eb 100644
--- a/templates/group.html
+++ b/templates/group.html
@@ -93,14 +93,14 @@
<table class="table table-hover">
<tr>
- <th class="col-sm-3">username</th>
- <th class="col-sm-6 text-center">mail</th>
+ <th class="col-sm-5">Username</th>
+ <th class="col-sm-4">Email address</th>
<th class="col-sm-3">&nbsp;</th>
</tr>
{% endif %}
<tr>
<td>{{member.user.name}}</td>
- <td class="text-center">{{member.user.email}}</td>
+ <td>{{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>