symposion_app/pinaxcon/templates/symposion/teams/_team_row.html
Joel Addison 23e09b0fb5 Switch to LCA2020
Remove LCA2018 and LCA2019 styles and content.
Add base LCA2020 styling and update references to year.
2019-06-24 21:58:21 +10:00

23 lines
920 B
HTML

<div class="card mx-4 my-4">
<div class="card-body">
<h4 class="card-title">
{{ team.name|title }}
</h4>
{% if membership %}
<small class="badge float-right badge-pill badge-{% if membership.state == 'invited' %}info{% else %}primary{% endif %}">{{ membership.get_state_display }}</small>
{% endif %}
{% if team.description %}
<p>{{ team.description }}</p>
{% else %}
<p>No team description available.</p>
{% endif %}
</div>
<div class="card-footer">
<a href="{% url "team_detail" team.slug %}">Details</a>
{% if membership %}
{% 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 %}
</div>
</div>