{% extends "fellchensammlung/base_generic.html" %} {% load custom_tags %} {% load i18n %} {% block title %}{{ adoption_notice.name }}{% endblock %} {% block content %}

{{ adoption_notice.name }}

{% if not is_subscribed %}
{% csrf_token %}
{% translate 'Abonniere diese Vermittlung um bei Kommentaren oder Statusänderungen benachrichtigt zu werden' %}
{% else %}
{% csrf_token %}
{% endif %}
{% if has_edit_permission %} {% translate 'Foto hinzufĂĽgen' %} {% translate 'Bearbeiten' %} {% endif %}
{% if adoption_notice.organization %} {% endif %} {% if adoption_notice.organization %} {% endif %}
{% translate "Ort" %}{% translate "Organisation" %}{% translate "Suchen seit" %} {% translate "Zuletzt aktualisiert" %} {% translate "Weitere Informationen" %}
{% if adoption_notice.location %} {{ adoption_notice.location }} {% else %} {{ adoption_notice.location_string }} {% endif %}
{{ adoption_notice.organization }} {% if adoption_notice.organization.trusted %}
{% translate 'Diese Organisation kennt sich mit Ratten aus und achtet auf gute Abgabebedingungen' %}
{% endif %}
{{ adoption_notice.searching_since }} {{ adoption_notice.last_checked_hr }} {% if adoption_notice.further_information %}
{% else %} - {% endif %}

{% translate "Bilder" %}

{% for photo in adoption_notice.get_photos %} {{ photo.alt_text }} {% endfor %}

{% translate "Beschreibung" %}

{% if adoption_notice.description %} {{ adoption_notice.description | render_markdown }} {% else %} {% translate "Keine Beschreibung angegeben" %} {% endif %}

{% for animal in adoption_notice.animals %} {% include "fellchensammlung/partials/partial-animal-card.html" %} {% endfor %}
{% include "fellchensammlung/partials/partial-comment-section.html" %} {% endblock %}