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

View File

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