feat: Add updatequeue template
This commit is contained in:
parent
258d9827fd
commit
cf061e02d2
@ -0,0 +1,34 @@
|
|||||||
|
{% extends "fellchensammlung/base_generic.html" %}
|
||||||
|
{% load i18n %}
|
||||||
|
{% block content %}
|
||||||
|
<h1>{% translate "Aktualitätscheck" %}</h1>
|
||||||
|
<p>{% translate "Überprüfe ob Vermittlungen noch aktuell sind" %}</p>
|
||||||
|
{% for adoption_notice in adoption_notices %}
|
||||||
|
<div class="card">
|
||||||
|
<h1>
|
||||||
|
<a href="{{ adoption_notice.get_absolute_url }}">{{ adoption_notice.name }}</a>
|
||||||
|
</h1>
|
||||||
|
{% if adoption_notice.further_information %}
|
||||||
|
<p>{% translate "Externe Quelle" %}: {{ adoption_notice.link_to_more_information | safe }}</p>
|
||||||
|
{% endif %}
|
||||||
|
<div>
|
||||||
|
<form method="post">
|
||||||
|
{% csrf_token %}
|
||||||
|
<input type="hidden"
|
||||||
|
name="adoption_notice_id"
|
||||||
|
value="{{ adoption_notice.pk }}">
|
||||||
|
<input type="hidden" name="action" value="checked_active">
|
||||||
|
<button class="btn" type="submit">{% translate "Vermittlung noch aktuell" %}</button>
|
||||||
|
</form>
|
||||||
|
<form method="post">
|
||||||
|
{% csrf_token %}
|
||||||
|
<input type="hidden"
|
||||||
|
name="adoption_notice_id"
|
||||||
|
value="{{ adoption_notice.pk }}">
|
||||||
|
<input type="hidden" name="action" value="checked_inactive">
|
||||||
|
<button class="btn" type="submit">{% translate "Vermittlung inaktiv" %}</button>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
{% endblock %}
|
Loading…
Reference in New Issue
Block a user