symposion_app/symposion_project/templates/teams/team_detail.html
2012-08-01 22:49:27 -04:00

22 lines
596 B
HTML

{% extends "site_base.html" %}
{% block head_title %}{{ team.name }}{% endblock %}
{% block body %}
<h1>{{ team.name }}</h1>
{% if can_join %}
<form method="post" action="{% url team_join team.slug %}">
{% csrf_token %}
<input type="submit" class="btn btn-primary" value="join">
</form>
{% endif %}
{% if can_leave %}
<form method="post" action="{% url team_leave team.slug %}">
{% csrf_token %}
<input type="submit" class="btn" value="leave">
</form>
{% endif %}
{% endblock %}