Private
Public Access
1
0

adding link to Home, delayed tasks working

This commit is contained in:
Sander Roosendaal
2022-06-29 16:17:37 +02:00
parent 22f3708120
commit a47ae2bc5b
10 changed files with 87 additions and 8 deletions

View File

@@ -1,3 +1,5 @@
{% extends "boatmovers_base.html" %}
{% block main %}
<style>
.row {
display: flex;
@@ -10,6 +12,8 @@
margin: 10px;
}
</style>
<h1>
Boat Movers Ranking
</h1>
@@ -108,3 +112,4 @@
</p>
{% endif %}
</div>
{% endblock %}

View File

@@ -1,4 +1,7 @@
{% extends "boatmovers_base.html" %}
{% block main %}
<form action="" method="post">{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Create" />
</form>
{% endblock %}

View File

@@ -1,4 +1,7 @@
{% extends "boatmovers_base.html" %}
{% block main %}
<form action="" method="post">{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Create" />
</form>
{% endblock %}

View File

@@ -1,4 +1,7 @@
{% extends "boatmovers_base.html" %}
{% block main %}
<form action="" method="post">{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Create" />
</form>
{% endblock %}

View File

@@ -0,0 +1,33 @@
{% load leaflet_tags %}
{% load cookielaw_tags %}
{% block filters %}
{% endblock %}
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}Rowsandall Boatmovers{% endblock %}</title>
</head>
<body>
<div>
<a href="/boatmovers/">Ranking</a>
</div>
{% if WARNING_MESSAGE != '' %}
{{ WARNING_MESSAGE }}
{% endif %}
{% if messages %}
{% for message in messages %}
<p>
{{ message|safe }}
</p>
{% endfor %}
{% endif %}
{% block main %}
{% endblock %}
</body>
</html>
{% block scripts %} {% endblock %}

View File

@@ -1,3 +1,5 @@
{% extends "boatmovers_base.html" %}
{% block main %}
<h1>
{{ crew.name }}
</h1>
@@ -17,3 +19,4 @@
{% endfor %}
</table>
</p>
{% endblock %}

View File

@@ -1,3 +1,6 @@
{% extends "boatmovers_base.html" %}
{% block main %}
<h1>
{{ race.name }}
</h1>
@@ -48,3 +51,4 @@
</p>
{% endif %}
{% endif %}
{% endblock %}