diff --git a/symposion_project/templates/dashboard.html b/symposion_project/templates/dashboard.html index f0bfc5c9..612691a8 100644 --- a/symposion_project/templates/dashboard.html +++ b/symposion_project/templates/dashboard.html @@ -132,30 +132,42 @@
{% if user.memberships.exists %}

Your Teams

-
+ {% for membership in user.memberships.all %} -
- {{ membership.team.name }} - {{ membership.get_state_display }} - {% if membership.state == "manager" or user.is_staff %} - {% if membership.team.applicants %}{{ membership.team.applicants.count }} applicant{{ membership.team.applicants.count|pluralize }}{% endif %} - {% endif %} -
+ + + + + {% endfor %} - +
+ {{ membership.team.name }} + {% if membership.team.description %}
{{ membership.team.description }}{% endif %} +
+ {{ membership.get_state_display }} + + {% if membership.state == "manager" or user.is_staff %} + {% if membership.team.applicants %}{{ membership.team.applicants.count }} applicant{{ membership.team.applicants.count|pluralize }}{% endif %} + {% endif %} +
{% endif %} {% available_teams as available_teams %} {% if available_teams %}

Available Teams

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