From 6e64287e3a62d026f2dca35a6e27184f938ac6ba Mon Sep 17 00:00:00 2001 From: leigh-mil Date: Mon, 29 Apr 2019 11:37:13 -0400 Subject: [PATCH] Use ul and li to display list of env users --- templates/fragments/applications/edit_environments.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/fragments/applications/edit_environments.html b/templates/fragments/applications/edit_environments.html index d842a46d..d2e5faff 100644 --- a/templates/fragments/applications/edit_environments.html +++ b/templates/fragments/applications/edit_environments.html @@ -7,17 +7,17 @@ {% set unassigned = role == 'Unassigned(No Access)' %}

{{ role }}

-
+
    {% for user in users %} -
    +
  • {{ user.name }}{{ Icon('edit', classes="icon--medium right") }} -
  • + {% endfor %} {% if users == [] %}
    Currently no members are in this role
    {% endif %} -
+
{% endmacro %}