the html js and css stuff
This commit is contained in:
parent
fef67254ee
commit
d51190a1f7
4 changed files with 43 additions and 0 deletions
25
fbf/templates/fbf/birds_all.html
Normal file
25
fbf/templates/fbf/birds_all.html
Normal 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 %}
|
Loading…
Add table
Add a link
Reference in a new issue