Add Terms and Conditions page template

This commit is contained in:
2014-12-23 11:09:23 +01:00
committed by Gergely Polonkai
parent cb8a780548
commit b2e434300a
4 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
{% extends 'front_template.html' %}
{% block body %}
<h2>Terms and Conditions</h2>
{% endblock %}

View File

@@ -6,6 +6,7 @@
<body>
<h1>Rubber Duck Booking Tool</h1>
<a href="{% url 'index' %}">Home</a>
<a href="{% url 'booking:terms' %}">Terms and Conditions</a>
<a href="{% url 'booking:vocabulary' %}">Vocabulary</a>
{% block body %}{% endblock %}
</body>