the html js and css stuff

This commit is contained in:
gw3000 2023-06-09 09:20:47 +02:00
parent fef67254ee
commit d51190a1f7
4 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{% extends "base.html" %}
{% load static %}
{% block content %}
<h3>Übersicht aller Vögel in Behandlung</h3>
<table class="table table-striped table-hover" id="t__bids_all">
<thead>
<tr>
<th>Vogel</th>
<th>Fundort</th>
<th>angelegt am</th>
<th>gefunden von</th>
</tr>
</thead>
<tbody>
{% for bird in birds %}
<tr>
<td><a href="{% url 'bird_single' bird.id %}">{{bird.bird}}</a></td>
<td>{{bird.place}}</td>
<td>{{bird.created}}</td>
<td>{{bird.rescuer}}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock content %}

11
static/css/bootstrap.min.css vendored Normal file

File diff suppressed because one or more lines are too long

0
static/css/style.css Normal file
View file

7
static/js/bootstrap.bundle.min.js vendored Normal file

File diff suppressed because one or more lines are too long