2017-04-02 16:04:57 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% load commonmark %}
|
|
|
|
|
|
|
|
{% block title %}
|
2017-05-12 09:28:09 +00:00
|
|
|
Leave Team: {{ team.name }} | {{ block.super }}
|
2017-04-02 16:04:57 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<h3>Leave {{ team.name }} Team</h3>
|
|
|
|
<p class="lead">Really leave the <b>{{ team.name }}</b> team?<p>
|
|
|
|
<form method="POST">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form }}
|
|
|
|
<button class="btn btn-success" type="submit"><i class="fa fa-check"></i> Leave {{ team.name }} Team</button>
|
|
|
|
<a href="{% url 'team_list' camp_slug=camp.slug %}" class="btn btn-default" type="submit"><i class="fa fa-remove"></i> Cancel</a>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|