22 lines
649 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="row justify-content-center">
<div class="col-md-6">
<div class="card">
<div class="card-header">
<h2>Open Game for Other Teams</h2>
</div>
<div class="card-body">
<p>Select teams to open the game "{{ game.title }}" for.</p>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit" class="btn btn-primary">Open Game</button>
</form>
</div>
</div>
</div>
</div>
{% endblock %}