{% extends "base.html" %} {% block title %} {{ package.title }} {% endblock %} {% block content %} {% if not package.approved %}
{% if package.releases.count() == 0 %} {% if package.checkPerm(current_user, "MAKE_RELEASE") %} You need to create a release before this package can be approved.

A release is a single downloadable version of your {{ package.type.value | lower }}. You need to create releases even if you use a rolling release development cycle, as Minetest needs them to check for updates.

Create Release {% else %} A release is required before this package can be approved. {% endif %} {% elif (package.type == package.type.GAME or package.type == package.type.TXP) and package.screenshots.count() == 0 %} You need to add at least one screenshot. {% elif topic_error_lvl == "error" %} Please fix the below topic issue(s). {% else %} {% if package.screenshots.count() == 0 %} You should add at least one screenshot, but this isn't required.
{% endif %} {% if not package.getDownloadRelease() %} Please wait for the release to be approved. {% elif package.checkPerm(current_user, "APPROVE_NEW") %} You can now approve this package if you're ready.
{% else %} Please wait for the package to be approved. {% endif %} {% endif %}
{% if topic_error %}
{{ topic_error | safe }}
{% endif %} {% if package.author == current_user or package.checkPerm(current_user, "APPROVE_NEW") %} {% if review_thread %}

{% if review_thread.private %}🔒{% endif %} {{ review_thread.title }}

{% if review_thread.private %}

This thread is only visible to the package owner and users of Editor rank or above.

{% endif %} {% from "macros/threads.html" import render_thread %} {{ render_thread(review_thread, current_user) }} {% else %}
Privately ask a question or give feedback Open Thread
{% endif %} {% endif %} {% endif %}

{{ package.title }} by {{ package.author.display_name }}

{{ package.shortDesc }}

{{ package.desc | markdown }}

Releases

Tags

Dependencies

{# {% if current_user.is_authenticated or requests %}

Edit Requests

{% endif %} #} {% if alternatives %}

Alternatives

{% endif %} {% if similar_topics %}

Similar Forum Topics

{% if not package.approved and package.type == package.type.MOD %}
Please make sure that this package has the right to the name '{{ package.name }}'. See the Inclusion Policy for more info.
{% endif %} {% endif %} {% if threads %}

Threads

{% if package.approved and package.checkPerm(current_user, "CREATE_THREAD") %}

Open Thread

{% endif %} {% from "macros/threads.html" import render_threadlist %} {{ render_threadlist(threads) }} {% endif %} {% endblock %}