feat: Add basic modqueue view

This commit is contained in:
2024-04-07 09:03:20 +02:00
parent 6da21a2786
commit 3faf7d58ac
3 changed files with 18 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
{% extends "fellchensammlung/base_generic.html" %}
{% load i18n %}
{% block content %}
<h1>{% translate "Modqueue" %}</h1>
<p>{% translate "Erlaube oder blockiere Vermittlungsanzeigen die bisher noch zurückgehaltemn werden " %}</p>
{% for report in reports %}
{% include "fellchensammlung/partials/partial-report.html" %}
{% endfor %}
{% endblock %}