You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
566 B
28 lines
566 B
{% extends 'tournaments/base.html' %}
|
|
|
|
{% block head_title %}Test mail{% endblock %}
|
|
{% block first_title %}Padel Club{% endblock %}
|
|
{% block second_title %}Test mail{% endblock %}
|
|
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
<div class="grid-x">
|
|
|
|
<div class="cell medium-6 large-6 padding10">
|
|
<div class="bubble">
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
|
|
<button type="submit" class="rounded-button">Submit</button>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|