From cf061e02d2b9c4b72541a76ba7fea3b2328d3c41 Mon Sep 17 00:00:00 2001 From: moanos Date: Thu, 3 Oct 2024 08:46:12 +0200 Subject: [PATCH] feat: Add updatequeue template --- .../fellchensammlung/updatequeue.html | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/fellchensammlung/templates/fellchensammlung/updatequeue.html 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 %}