Add disclaimer page

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

View File

@@ -0,0 +1,6 @@
{% extends 'front_template.html' %}
{% block body %}
<h2>Disclaimer</h2>
<p>Basic idea is from <a href="http://en.wikipedia.org/wiki/The_Pragmatic_Programmer">The Pragmatic Programmer. I suggest to read this book, even if you are not a programmer.</p>
{% endblock %}

View File

@@ -8,6 +8,7 @@
<a href="{% url 'index' %}">Home</a>
<a href="{% url 'booking:terms' %}">Terms and Conditions</a>
<a href="{% url 'booking:vocabulary' %}">Vocabulary</a>
<a href="{% url 'booking:disclaimer' %}">Disclaimer</a>
{% block body %}{% endblock %}
</body>
</html>