duck-booking-tool/booking/templates/front_template.html

25 lines
771 B
HTML
Raw Normal View History

2015-01-14 17:03:28 +01:00
<!DOCTYPE html>
<html>
<head>
<title>Rubber Duck Booking Tool</title>
</head>
<body>
<h1>Rubber Duck Booking Tool</h1>
2014-12-17 13:30:58 +01:00
{% if user.is_authenticated %}
2015-01-12 16:51:54 +01:00
<div>
2014-12-17 13:30:58 +01:00
Logged in as {{ user }}
<a href="{% url 'accounts:logout' %}">Logout</a>
2015-01-12 16:51:54 +01:00
</div>
2014-12-17 13:30:58 +01:00
{% else %}
<div>
<a href="{% url 'accounts:login' %}">Login</a> or <a href="{% url 'accounts:register' %}">Register</a>
</div>
{% endif %}
2014-12-23 09:28:43 +01:00
<a href="{% url 'booking:list' %}">Home</a>
2014-12-23 11:09:23 +01:00
<a href="{% url 'booking:terms' %}">Terms and Conditions</a>
2014-12-23 09:13:22 +01:00
<a href="{% url 'booking:vocabulary' %}">Vocabulary</a>
2014-12-23 11:59:26 +01:00
<a href="{% url 'booking:disclaimer' %}">Disclaimer</a>
2015-01-14 17:03:28 +01:00
{% block body %}{% endblock %}
</body>
</html>