mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-10 00:03:24 +00:00
35 lines
1.1 KiB
Django/Jinja
35 lines
1.1 KiB
Django/Jinja
{% extends "core/base.jinja" %}
|
|
|
|
{% block title %}
|
|
{% trans %}SAS moderation{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h3>{% trans %}SAS moderation{% endtrans %}</h3>
|
|
<div id="moderation">
|
|
<h4>{% trans %}Albums{% endtrans %}</h4>
|
|
<ul>
|
|
{% for a in albums_to_moderate %}
|
|
<li>{{ a }}:
|
|
<form action="" method="POST">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="album_id" value="{{ a.id }}" />
|
|
<input type="submit" name="moderate" value="{% trans %}Moderate{% endtrans %}" />
|
|
<input type="submit" name="delete" value="{% trans %}Delete{% endtrans %}" />
|
|
</form>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% for a in albums %}
|
|
<h4>{{ a.get_display_name() }}</h4>
|
|
{% for p in pictures.filter(parent=a).order_by('id') %}
|
|
<div class="picture">
|
|
<a href="{{ url("sas:picture", picture_id=p.id) }}">
|
|
<img src="{{ p.get_download_thumb_url() }}" alt="{{ p.name }}">
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|