diff --git a/coinmanager/coinc/templates/coinc/coin.html b/coinmanager/coinc/templates/coinc/coin.html
index 3a5113c..25c6b16 100644
--- a/coinmanager/coinc/templates/coinc/coin.html
+++ b/coinmanager/coinc/templates/coinc/coin.html
@@ -1 +1 @@
-
{% if coin.found_by %}x{% endif %} |
+ {% if coin.found_by %}x{% endif %} |
diff --git a/coinmanager/coinc/templates/coinc/country.html b/coinmanager/coinc/templates/coinc/country.html
index a1c72b3..2d39c1f 100644
--- a/coinmanager/coinc/templates/coinc/country.html
+++ b/coinmanager/coinc/templates/coinc/country.html
@@ -1,20 +1,14 @@
- {% include "base.html" %}
- {% block content %}
-
+{% include "header.html" with title=country.name %}
-
+ |
{{ country.name }}{% if country.comment %} - {{ country.comment }}{% endif %}
|
- |
- {% for year in country.years %}
- {% show_year country year %}
- {% endfor %}
-
+{% for year in country.years %}{% show_year country year %}{% endfor %}
- {% endblock %}
+{% include "footer.html" %}
diff --git a/coinmanager/coinc/templates/coinc/index.html b/coinmanager/coinc/templates/coinc/index.html
index 04d2704..f72a885 100644
--- a/coinmanager/coinc/templates/coinc/index.html
+++ b/coinmanager/coinc/templates/coinc/index.html
@@ -1,5 +1,4 @@
- {% extends "base.html" %}
- {% block content %}
+{% include "header.html" with title="Münzsammlung" %}
{% if countrys %}
{% show_navigation countrys %}
{% for country in countrys %}
@@ -7,4 +6,4 @@
{% endfor %}
{% else %}
Trage zuerst Länder im Adminbereich ein.
{% endif %}
- {% endblock %}
+ {% include "footer.html" %}
diff --git a/coinmanager/coinc/templates/coinc/year.html b/coinmanager/coinc/templates/coinc/year.html
index f6bde03..68b16cf 100644
--- a/coinmanager/coinc/templates/coinc/year.html
+++ b/coinmanager/coinc/templates/coinc/year.html
@@ -1,13 +1,6 @@
- {% for stamp in year %}
-
- {{ stamp }}{{ year_int }} |
- {% for value in values %}
- {% show_coin country year_int stamp value %}
- {% endfor %}
-
- {% endfor %}
- {% ifnotequal year|length 1 %}
-
- |
-
- {% endifnotequal %}
+{% for stamp in year %}
+ {{ stamp }}{{ year_int }} |
+{% for value in values %}{% show_coin country year_int stamp value %}{% endfor %}
{% endfor %}{% ifnotequal year|length 1 %}
+
+ |
+
{% endifnotequal %}
diff --git a/coinmanager/coinc/templates/footer.html b/coinmanager/coinc/templates/footer.html
new file mode 100644
index 0000000..b605728
--- /dev/null
+++ b/coinmanager/coinc/templates/footer.html
@@ -0,0 +1,2 @@
+