2015-01-05 16:13:08 +01:00
|
|
|
{% load staticfiles %}
|
2015-01-14 17:03:28 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Rubber Duck Booking Tool</title>
|
2015-01-05 16:12:33 +01:00
|
|
|
|
2015-01-05 16:13:08 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'booking.css' %}">
|
|
|
|
<link rel="stylesheet" type="text/css" href="//code.jquery.com/ui/1.11.2/themes/ui-lightness/jquery-ui.css">
|
|
|
|
|
|
|
|
<script src="//code.jquery.com/jquery-2.1.3.min.js"></script>
|
|
|
|
<script src="//code.jquery.com/ui/1.11.2/jquery-ui.min.js"></script>
|
2015-01-14 17:03:28 +01:00
|
|
|
</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 %}
|
2015-01-05 16:13:08 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
{% block endscript %}{% endblock %}
|
|
|
|
</script>
|
2015-01-14 17:03:28 +01:00
|
|
|
</body>
|
|
|
|
</html>
|