diff --git a/src/fellchensammlung/templates/fellchensammlung/partials/partial-check-adoption-notice.html b/src/fellchensammlung/templates/fellchensammlung/partials/partial-check-adoption-notice.html
new file mode 100644
index 0000000..3f7ccaa
--- /dev/null
+++ b/src/fellchensammlung/templates/fellchensammlung/partials/partial-check-adoption-notice.html
@@ -0,0 +1,28 @@
+{% load i18n %}
+{% load custom_tags %}
+
+
+ {% if adoption_notice.further_information %}
+
{% translate "Externe Quelle" %}: {{ adoption_notice.link_to_more_information | safe }}
+ {% endif %}
+
+
+
+
+
\ No newline at end of file
diff --git a/src/fellchensammlung/templates/fellchensammlung/updatequeue.html b/src/fellchensammlung/templates/fellchensammlung/updatequeue.html
index 43d8078..372a2ac 100644
--- a/src/fellchensammlung/templates/fellchensammlung/updatequeue.html
+++ b/src/fellchensammlung/templates/fellchensammlung/updatequeue.html
@@ -3,32 +3,10 @@
{% block content %}
{% translate "Aktualitätscheck" %}
{% translate "Überprüfe ob Vermittlungen noch aktuell sind" %}
- {% for adoption_notice in adoption_notices %}
-
-
- {% if adoption_notice.further_information %}
-
{% translate "Externe Quelle" %}: {{ adoption_notice.link_to_more_information | safe }}
- {% endif %}
-
-
-
-
-
- {% endfor %}
+
+
{% translate 'Vermittlungen zur Überprüfung' %}
+ {% for adoption_notice in adoption_notices %}
+ {% include "fellchensammlung/partials/partial-check-adoption-notice.html" %}
+ {% endfor %}
+
{% endblock %}