Add competence listing functionality

This commit is contained in:
2015-01-05 16:13:08 +01:00
committed by Gergely Polonkai
parent 2a53041702
commit d2e56db0d9
7 changed files with 79 additions and 11 deletions

View File

@@ -1,9 +1,15 @@
{% load staticfiles %}
<!DOCTYPE html>
<html>
<head>
<title>Rubber Duck Booking Tool</title>
<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="{% url 'api:js_reverse' %}" type="text/javascript"></script>
<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>
</head>
<body>
<h1>Rubber Duck Booking Tool</h1>
@@ -22,5 +28,8 @@
<a href="{% url 'booking:vocabulary' %}">Vocabulary</a>
<a href="{% url 'booking:disclaimer' %}">Disclaimer</a>
{% block body %}{% endblock %}
<script type="text/javascript">
{% block endscript %}{% endblock %}
</script>
</body>
</html>