Remove references to legacy character management.

Correct group name spacing.
This commit is contained in:
Adarnof
2016-12-29 17:41:00 -05:00
parent 33e481fb12
commit 1e523d762e
4 changed files with 1 additions and 18 deletions

View File

@@ -110,12 +110,6 @@
</a>
</li>
<li>
<a class="{% navactive request 'auth_characters' %}" href="{% url 'auth_characters' %}">
<i class="fa fa-users fa-fw grayiconecolor"></i>{% trans " Characters" %}
</a>
</li>
{% if STATE == MEMBER_STATE or user.is_superuser %}
<li>
<a class="{% navactive request 'auth_groups' %}" href="{% url 'auth_groups' %}">

View File

@@ -55,9 +55,7 @@
<table class="table table-striped">
{% for group in user.groups.all %}
<tr>
<td>
<p>{{ group.name }}</p>
</td>
<td>{{ group.name }}</td>
</tr>
{% endfor %}
</table>