adding link to Home, delayed tasks working
This commit is contained in:
33
boatmovers/templates/boatmovers_base.html
Normal file
33
boatmovers/templates/boatmovers_base.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user