diff --git a/symposion_project/templates/dashboard.html b/symposion_project/templates/dashboard.html
index 55952628..f0bfc5c9 100644
--- a/symposion_project/templates/dashboard.html
+++ b/symposion_project/templates/dashboard.html
@@ -137,6 +137,9 @@
{{ 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 %}
@@ -146,7 +149,10 @@
Available Teams
{% for team in available_teams %}
- - {{ team }} {{ team.get_access_display }}
+ -
+ {{ team }}
+ {{ team.get_access_display }}
+
{% if team.description %}- {{ team.description }}
{% endif %}
{% endfor %}