formated and linted
This commit is contained in:
parent
d51190a1f7
commit
352233887f
2 changed files with 37 additions and 37 deletions
|
@ -1,25 +1,27 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% load static %}
|
{% load static %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h3>Übersicht aller Vögel in Behandlung</h3>
|
<h3>Übersicht aller Vögel in Behandlung</h3>
|
||||||
<table class="table table-striped table-hover" id="t__bids_all">
|
<table class="table table-striped table-hover" id="t__bids_all">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Vogel</th>
|
<th>Vogel</th>
|
||||||
<th>Fundort</th>
|
<th>Fundort</th>
|
||||||
<th>angelegt am</th>
|
<th>angelegt am</th>
|
||||||
<th>gefunden von</th>
|
<th>gefunden von</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for bird in birds %}
|
{% for bird in birds %}
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="{% url 'bird_single' bird.id %}">{{bird.bird}}</a></td>
|
<td>
|
||||||
<td>{{bird.place}}</td>
|
<a href="{% url 'bird_single' bird.id %}">{{ bird.bird }}</a>
|
||||||
<td>{{bird.created}}</td>
|
</td>
|
||||||
<td>{{bird.rescuer}}</td>
|
<td>{{ bird.place }}</td>
|
||||||
</tr>
|
<td>{{ bird.created }}</td>
|
||||||
{% endfor %}
|
<td>{{ bird.rescuer }}</td>
|
||||||
</tbody>
|
</tr>
|
||||||
</table>
|
{% endfor %}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
|
@ -5,37 +5,35 @@
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
|
||||||
{% comment %} favicon {% endcomment %}
|
{% comment %} favicon {% endcomment %}
|
||||||
<link rel="shortcut icon" href="{% static 'img/favicon.ico' %}" type="image/x-icon">
|
<link rel="shortcut icon"
|
||||||
|
href="{% static 'img/favicon.ico' %}"
|
||||||
|
type="image/x-icon">
|
||||||
{% comment %} css {% endcomment %}
|
{% comment %} css {% endcomment %}
|
||||||
<link rel="stylesheet" href="{% static 'css/style.css' %}">
|
<link rel="stylesheet" href="{% static 'css/style.css' %}">
|
||||||
<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}">
|
<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}">
|
||||||
|
|
||||||
{% comment %} possible dynamic header {% endcomment %}
|
{% comment %} possible dynamic header {% endcomment %}
|
||||||
<title>{% block head_title %}Fallen Birdy{% endblock %}</title>
|
<title>
|
||||||
|
{% block head_title %}Fallen Birdy{% endblock head_title %}
|
||||||
|
</title>
|
||||||
{% comment %} custom header {% endcomment %}
|
{% comment %} custom header {% endcomment %}
|
||||||
{% block header %} {% endblock header %}
|
{% block header %}
|
||||||
|
{% endblock header %}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!--navbar-->
|
<!--navbar-->
|
||||||
{% block navbar %}
|
{% block navbar %}
|
||||||
{% include 'partials/_navbar.html' %}
|
{% include "partials/_navbar.html" %}
|
||||||
{% endblock navbar %}
|
{% endblock navbar %}
|
||||||
|
|
||||||
<!--content-->
|
<!--content-->
|
||||||
<div class="container">
|
<div class="container">
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!--footer-->
|
<!--footer-->
|
||||||
{% block footer %}
|
{% block footer %}
|
||||||
{% include 'partials/_footer.html' %}
|
{% include "partials/_footer.html" %}
|
||||||
{% endblock footer %}
|
{% endblock footer %}
|
||||||
|
<!-- JavaScript Bundle with Popper -->
|
||||||
<!-- JavaScript Bundle with Popper -->
|
<script src="{% static 'js/bootstrap.bundle.min.js' %}"></script>
|
||||||
<script src="{% static 'js/bootstrap.bundle.min.js' %}"></script>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue