From 56557aba500e574d52da05cfaaaa75fa15da2f27 Mon Sep 17 00:00:00 2001 From: Aarni Date: Wed, 11 Oct 2017 20:34:10 +0300 Subject: [PATCH] Own navbar for kaehmy --- webapp/templates/kaehmy.html | 4 ++++ webapp/templates/kaehmy_list.html | 1 + webapp/templates/kaehmy_navigation.html | 22 ++++++++++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 webapp/templates/kaehmy_navigation.html diff --git a/webapp/templates/kaehmy.html b/webapp/templates/kaehmy.html index b158819..0739479 100644 --- a/webapp/templates/kaehmy.html +++ b/webapp/templates/kaehmy.html @@ -3,6 +3,10 @@ {% load bootstrap3 %} {% load i18n %} +{% block navigation %} + {% include "kaehmy_navigation.html" %} +{% endblock %} + {% block content %}

{% trans "Kaehmy" %}

diff --git a/webapp/templates/kaehmy_list.html b/webapp/templates/kaehmy_list.html index 11f46b6..18a948e 100644 --- a/webapp/templates/kaehmy_list.html +++ b/webapp/templates/kaehmy_list.html @@ -4,6 +4,7 @@ {% load i18n %} {% block navigation %} + {% include "kaehmy_navigation.html" %} {% endblock %} {% block content %} diff --git a/webapp/templates/kaehmy_navigation.html b/webapp/templates/kaehmy_navigation.html new file mode 100644 index 0000000..d2991dd --- /dev/null +++ b/webapp/templates/kaehmy_navigation.html @@ -0,0 +1,22 @@ +{% load i18n %} +
+ +
\ No newline at end of file