diff --git a/app/groups/templates/groups/create_request.html b/app/groups/templates/groups/create_request.html
index 51b3a28..75ed1f0 100644
--- a/app/groups/templates/groups/create_request.html
+++ b/app/groups/templates/groups/create_request.html
@@ -3,13 +3,17 @@
{% block title %}Create a Membership Request{% endblock %}
{% block content %}
+
+
Please fill in a reason why you like to be a member of this group and any supporting evidence as requested by the group adminship
{% endblock %}
diff --git a/app/groups/templates/groups/group_admin.html b/app/groups/templates/groups/group_admin.html
index c3648a5..c456aa5 100644
--- a/app/groups/templates/groups/group_admin.html
+++ b/app/groups/templates/groups/group_admin.html
@@ -2,45 +2,61 @@
{% block content %}
-{{ group.name }}
+
Members
{% if group.user_set.all %}
-
-| Member Username | Character | Status | Actions |
-{% for user, chars, status in member_list %}
-| {{ user.username }} |
- {{ chars }} |
- {{ status }} |
- Kick Member
- {% if request.user.is_superuser %} Toggle Admin{% endif %} |
-
-{% endfor %}
+
+
+ | Member Username | Character | Status | Actions |
+
+
+ {% for user, chars, status in member_list %}
+ | {{ user.username }} |
+ {{ chars }} |
+ {{ status }} |
+ Kick Member
+ {% if request.user.is_superuser %} Toggle Admin{% endif %} |
+
+ {% endfor %}
+
{% else %}
-This group has no members
+This group has no members
{% endif %}
Membership Requests
{% if requests %}
-
-| Username | Character | Reason | Status | Created Date | Actions |
-{% for req in requests %}
-| {{ req.user }} |
- {{ req.character }} |
- {{ req.reason }} |
- {{ req.get_status_description }} |
- {{ req.created_date }} |
- Accept
- Reject |
-
+
+
+ | Username | Character | Reason | Status | Created Date | Actions |
+
+
+ {% for req in requests %}
+ | {{ req.user }} |
+ {{ req.character }} |
+ {{ req.reason }} |
+ {{ req.get_status_description }} |
+ {{ req.created_date }} |
+ Accept
+ Reject |
+
+
{% endfor %}
{% else %}
This group has no outstanding requests
{% endif %}
+
+
{% endblock %}