diff --git a/bookwyrm/templates/groups/layout.html b/bookwyrm/templates/groups/layout.html
index f558f169..619c89ee 100644
--- a/bookwyrm/templates/groups/layout.html
+++ b/bookwyrm/templates/groups/layout.html
@@ -11,13 +11,22 @@
{% include 'groups/created_text.html' with group=group %}
+ {% if request.user == group.user %}
- {% if request.user == group.user %}
- {% trans "Edit group" as button_text %}
- {% include 'snippets/toggle/open_button.html' with text=button_text icon_with_text="pencil" controls_text="edit_group" focus="edit_group_header" %}
- {% endif %}
+ {% trans "Create List" as button_text %}
+ {% include 'snippets/toggle/open_button.html' with controls_text="create_list" icon_with_text="plus" text=button_text focus="create_list_header" %}
+
+ {% trans "Edit group" as button_text %}
+ {% include 'snippets/toggle/open_button.html' with text=button_text icon_with_text="pencil" controls_text="edit_group" focus="edit_group_header" %}
+
+ {% endif %}
+{% if request.user.is_authenticated %}
+
+ {% include 'lists/create_form.html' with controls_text="create_list" curation_group=group %}
+
+{% endif %}
{% include 'snippets/trimmed_text.html' with full=group.description %}
diff --git a/bookwyrm/templates/lists/create_form.html b/bookwyrm/templates/lists/create_form.html
index 447c0f6b..a1bda591 100644
--- a/bookwyrm/templates/lists/create_form.html
+++ b/bookwyrm/templates/lists/create_form.html
@@ -7,6 +7,6 @@
{% block form %}
{% endblock %}
diff --git a/bookwyrm/templates/lists/form.html b/bookwyrm/templates/lists/form.html
index 25dc01e6..d2248853 100644
--- a/bookwyrm/templates/lists/form.html
+++ b/bookwyrm/templates/lists/form.html
@@ -19,7 +19,7 @@
@@ -34,17 +34,17 @@