mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
38 lines
815 B
HTML
38 lines
815 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ title }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if canApproveNew %}
|
|
<h2>Packages Awaiting Approval</h2>
|
|
<ul>
|
|
{% for p in approve_new %}
|
|
<li><a href="{{ p.getDetailsURL() }}">
|
|
{{ p.title }} by {{ p.author.display_name }}
|
|
</a></li>
|
|
{% else %}
|
|
<li><i>No packages need reviewing.</i></ul>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{% if canApproveRel %}
|
|
<h2>Releases Awaiting Approval</h2>
|
|
<ul>
|
|
{% for r in releases %}
|
|
<li>
|
|
<a href="{{ r.getEditURL() }}">{{ r.title }}</a>
|
|
on
|
|
<a href="{{ r.package.getDetailsURL() }}">
|
|
{{ r.package.title }} by {{ r.package.author.display_name }}
|
|
</a>
|
|
</li>
|
|
{% else %}
|
|
<li><i>No releases need reviewing.</i></ul>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{% endblock %}
|