From 1e20731e3221d3dc315047137eea187de7ffab5d Mon Sep 17 00:00:00 2001 From: James Polley Date: Fri, 22 Sep 2017 22:25:01 +1000 Subject: [PATCH] Fix list of teams --- pinaxcon/templates/dashboard.html | 43 ++++++++++++++++--------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/pinaxcon/templates/dashboard.html b/pinaxcon/templates/dashboard.html index d9a08556..dcfeb020 100644 --- a/pinaxcon/templates/dashboard.html +++ b/pinaxcon/templates/dashboard.html @@ -299,31 +299,32 @@ {% endif %}
- {% if available_teams %} - -
- {% for team in available_teams %} -
-
-
-
{{ team }}
-
-
- {% if team.description %}

{{ team.description }}

{% endif %} - {{ team.get_access_display }} - Details -
-
+
+ {% if available_teams %} + - {% endfor %} +
+ {% for team in available_teams %} +
+
+
+
{{ team }}
+
+
+ {% if team.description %}

{{ team.description }}

{% endif %} + {{ team.get_access_display }} + Details +
+
+
+ {% endfor %} +
+ {% endif %}
- {% endif %}
+ {% endif %}
- {% endif %} -
{% endblock %}