diff --git a/src/fellchensammlung/templates/fellchensammlung/updatequeue.html b/src/fellchensammlung/templates/fellchensammlung/updatequeue.html new file mode 100644 index 0000000..43d8078 --- /dev/null +++ b/src/fellchensammlung/templates/fellchensammlung/updatequeue.html @@ -0,0 +1,34 @@ +{% extends "fellchensammlung/base_generic.html" %} +{% load i18n %} +{% block content %} +

{% translate "Aktualitätscheck" %}

+

{% translate "Überprüfe ob Vermittlungen noch aktuell sind" %}

+ {% for adoption_notice in adoption_notices %} +
+

+ {{ adoption_notice.name }} +

+ {% if adoption_notice.further_information %} +

{% translate "Externe Quelle" %}: {{ adoption_notice.link_to_more_information | safe }}

+ {% endif %} +
+
+ {% csrf_token %} + + + +
+
+ {% csrf_token %} + + + +
+
+
+ {% endfor %} +{% endblock %}