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

19 lines
566 B
HTML
Raw Normal View History

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>
2017-11-23 22:09:14 +00:00
<a href="{% url 'teams:list' camp_slug=camp.slug %}" class="btn btn-default" type="submit"><i class="fa fa-remove"></i> Cancel</a>
2017-04-02 16:04:57 +00:00
</form>
{% endblock %}