summaryrefslogtreecommitdiffstats
path: root/templates/group.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/group.html')
-rw-r--r--templates/group.html12
1 files changed, 9 insertions, 3 deletions
diff --git a/templates/group.html b/templates/group.html
index 6a5236c..38e078f 100644
--- a/templates/group.html
+++ b/templates/group.html
@@ -16,6 +16,12 @@
No description
{% endif %}
</div>
+
+ {% if not public_view and group.public %}
+ <div class="panel-footer text-center">
+ This group is public viewable.
+ </div>
+ {% endif %}
</div>
{% if not public_view %}
@@ -30,10 +36,10 @@
{% endif %}
<tr>
- <td class="col-sm-11 nopadding">
+ <td class="col-sm-10 nopadding">
<a href="{{ url_for('pad', group_name=group.name, pad_name=pad.name) }}" class="block">{{pad}}</a>
</td>
- <td class="col-sm-1 text-right">
+ <td class="col-sm-2 text-right">
<a href="{{ url_for('pad_change', group_name=group.name, pad_name=pad.name) }}" class="btn btn-xs btn-info">
<span class="glyphicon glyphicon-cog" />
</a>
@@ -87,7 +93,7 @@
</tr>
{% endif %}
<tr>
- <td>{{member.user.username}}</td>
+ <td>{{member.user.name}}</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>