From 4f7870aaffe4009a10ff5c857556abb17e8ced78 Mon Sep 17 00:00:00 2001 From: dandds Date: Mon, 6 Aug 2018 10:42:50 -0400 Subject: [PATCH] fix workspace_members template --- templates/workspace_members.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/workspace_members.html b/templates/workspace_members.html index 2344b905..19cb340f 100644 --- a/templates/workspace_members.html +++ b/templates/workspace_members.html @@ -1,4 +1,4 @@ -{% extends "base_workspace.html.to" %} +{% extends "base_workspace.html" %} {% from "components/empty_state.html" import EmptyState %} @@ -61,17 +61,17 @@ {% for m in members %} {{ m['first_name'] }} {{ m['last_name'] }} - {% if m['num_projects'] == '0' %} No Project Access {% end %} + {% if m['num_projects'] == '0' %} No Project Access {% endif %} {{ m['status'] }} {{ m['workspace_role'] }} - {% end %} + {% endfor %} -{% end %} +{% endif %} -{% end %} +{% endblock %}