diff --git a/fbf/templates/fbf/birds_all.html b/fbf/templates/fbf/birds_all.html
index 96f102e..794ccb3 100644
--- a/fbf/templates/fbf/birds_all.html
+++ b/fbf/templates/fbf/birds_all.html
@@ -1,25 +1,27 @@
{% extends "base.html" %}
{% load static %}
{% block content %}
-
Übersicht aller Vögel in Behandlung
-
-
-
- Vogel |
- Fundort |
- angelegt am |
- gefunden von |
-
-
-
- {% for bird in birds %}
-
- {{bird.bird}} |
- {{bird.place}} |
- {{bird.created}} |
- {{bird.rescuer}} |
-
- {% endfor %}
-
-
+ Übersicht aller Vögel in Behandlung
+
+
+
+ Vogel |
+ Fundort |
+ angelegt am |
+ gefunden von |
+
+
+
+ {% for bird in birds %}
+
+
+ {{ bird.bird }}
+ |
+ {{ bird.place }} |
+ {{ bird.created }} |
+ {{ bird.rescuer }} |
+
+ {% endfor %}
+
+
{% endblock content %}
diff --git a/templates/base.html b/templates/base.html
index c4ed733..8dd7007 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -5,37 +5,35 @@
-
{% comment %} favicon {% endcomment %}
-
-
+
{% comment %} css {% endcomment %}
-
{% comment %} possible dynamic header {% endcomment %}
- {% block head_title %}Fallen Birdy{% endblock %}
-
+
+ {% block head_title %}Fallen Birdy{% endblock head_title %}
+
{% comment %} custom header {% endcomment %}
- {% block header %} {% endblock header %}
+ {% block header %}
+ {% endblock header %}
{% block navbar %}
- {% include 'partials/_navbar.html' %}
+ {% include "partials/_navbar.html" %}
{% endblock navbar %}
-
- {% block content %}
- {% endblock content %}
+ {% block content %}
+ {% endblock content %}
-
{% block footer %}
- {% include 'partials/_footer.html' %}
+ {% include "partials/_footer.html" %}
{% endblock footer %}
-
-
-
+
+