fix: ensure heading styling

This commit is contained in:
2025-07-07 17:56:02 +02:00
parent 8df04519b9
commit 9d1264b6e6
2 changed files with 3 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
{% load i18n %}
<div class="detail-animal"></div>
<div class="detail-animal-header">
<h1>{{ animal.name }}</h1>
<h1 class="title is-1">{{ animal.name }}</h1>
<div class="tag">{{ animal.species }}</div>
</div>
<div>
@@ -18,7 +18,7 @@
</table>
</div>
<p>{{ animal.description }}</p>
<h2>{% translate "Bilder" %}</h2>
<h2 class="title is-2">{% translate "Bilder" %}</h2>
<div class="photos">
{% for image in animal.get_photos %}
<div class="card-photo">
@@ -28,5 +28,4 @@
{% if not animal.get_photos %}
{% translate "Keine Bilder" %}
{% endif %}
</div>
</div>

View File

@@ -2,7 +2,7 @@
{% load i18n %}
{% block content %}
<h1>{% translate "Tiere hinzufügen" %}</h1>
<h1 class="title is-1">{% translate "Tiere hinzufügen" %}</h1>
{% blocktranslate %}
Hier kannst du jetzt einzelne Tiere zu deiner Vermittlung hinzufügen.
{% endblocktranslate %}