{% set query=package.name %} {% extends "base.html" %} {% block title %} {{ package.title }} {% endblock %} {% block container %}

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

{{ package.short_desc }}

{{ package.getDownloadCount() }} downloads
{% if package.repo %}View Source{% endif %} {% if package.forums %}Forums{% endif %} {% if package.issueTracker %}Issue Tracker{% endif %} {% if package.website %}Website{% endif %}
{% if not package.approved %}
{% if package.releases.count() == 0 %}

Release Required

{% 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 == "danger" %} Please fix the below topic issue(s). {% elif "Other" in package.license.name or "Other" in package.media_license.name %} Please wait for the license to be added to CDB. {% 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 similar_topics %}
Please make sure that this package has the right to the name '{{ package.name }}'. See the Inclusion Policy for more info.
{% endif %} {% if not review_thread and (package.author == current_user or package.checkPerm(current_user, "APPROVE_NEW")) %}
Open Thread Privately ask a question or give feedback
{% endif %} {% endif %} {% if not package.approved and (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) }} {% endif %} {% endif %} {{ package.desc | markdown }}
{# {% if current_user.is_authenticated or requests %}

Edit Requests

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

Related

{% from "macros/packagegridtile.html" import render_pkggrid %} {{ render_pkggrid(alternatives) }} {% endif %} {% if similar_topics %}

Similar Forum Topics

{% endif %}
{% endblock %}