bornhack-website/src/teams/templates/team_detail.html

42 lines
1.3 KiB
HTML
Raw Normal View History

{% extends 'base.html' %}
{% load commonmark %}
{% load teams_tags %}
2017-05-21 14:05:31 +00:00
{% load bootstrap3 %}
{% block title %}
Team: {{ team.name }} | {{ block.super }}
{% endblock %}
{% block content %}
<h3>{{ team.name }} Team ({{ team.area.name }} area)</h3>
{{ team.description|unsafecommonmark }}
2017-04-02 18:05:43 +00:00
<p>Currently {{ team.members.count }} people are members of this team{% if request.user in team.members.all %} (including you){% endif %}.</p>
{% if request.user in team.members.all %}
<p>Your team status: {% membershipstatus request.user team %}</p>
{% endif %}
2017-04-02 18:05:43 +00:00
{% if request.user in team.members.all %}
<a href="{% url 'team_leave' camp_slug=camp.slug slug=team.slug %}" class="btn btn-danger">Leave Team</a>
{% else %}
{% if team.needs_members %}
<a href="{% url 'team_join' camp_slug=camp.slug slug=team.slug %}" class="btn btn-success">Join Team</a>
{% endif %}
{% endif %}
2017-04-01 21:16:23 +00:00
{% if request.user in team.responsible.all %}
<a href="{% url 'team_manage' camp_slug=camp.slug slug=team.slug %}" class="btn btn-success">Manage Team</a>
{% endif %}
<hr />
<h3>Team Responsible</h3>
<p>The following people are responsible for the <b>{{ team.name }} team</b>:</p>
<ul>
{% for resp in team.responsible.all %}
2017-05-23 20:21:48 +00:00
<li><b>{{ resp.profile.name }}</b></li>
{% endfor %}
</ul>
2017-05-21 14:05:31 +00:00
{% endblock %}