13 lines
No EOL
309 B
HTML
13 lines
No EOL
309 B
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-lg-8 mb-3">
|
|
<h3>Hilfesammlung</h3>
|
|
{% for bird in birds %}
|
|
<h4>{{ bird.name }}</h4>
|
|
<p>{{ bird.description }}</p>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock content %} |