{% 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. {% 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 %}
{% 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 %} {% endblock %}