contentdb/app/templates/packages/view.html

336 lines
11 KiB
HTML
Raw Normal View History

2018-03-19 19:08:41 +01:00
{% extends "base.html" %}
{% block title %}
2018-03-20 03:17:33 +01:00
{{ package.title }}
2018-03-19 19:08:41 +01:00
{% endblock %}
{% block content %}
2018-03-21 20:03:14 +01:00
{% if not package.approved %}
<div class="box box_grey alert alert-warning">
<span class="icon_message"></span>
{% if package.releases.count() == 0 %}
2018-05-23 21:37:17 +02:00
{% if package.checkPerm(current_user, "MAKE_RELEASE") %}
You need to create a release before this package can be approved.
<p>
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.
</p>
2018-12-21 15:45:54 +01:00
<a class="btn" href="{{ package.getCreateReleaseURL() }}">Create Release</a>
2018-05-23 21:37:17 +02:00
{% 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.
2018-07-07 01:28:27 +02:00
{% elif topic_error_lvl == "error" %}
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 %}
<b>You should add at least one screenshot, but this isn't required.</b><br />
{% 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.
<form method="post" action="{{ package.getApproveURL() }}">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
<input type="submit" value="Approve" />
</form>
{% else %}
Please wait for the package to be approved.
{% endif %}
2018-03-21 20:03:14 +01:00
{% endif %}
<div style="clear: both;"></div>
</div>
2018-06-11 23:49:25 +02:00
2018-07-07 01:28:27 +02:00
{% if topic_error %}
<div class="box box_grey alert alert-{{ topic_error_lvl }}">
<span class="icon_message"></span>
{{ topic_error | safe }}
<div style="clear: both;"></div>
</div>
{% endif %}
2018-06-11 23:49:25 +02:00
{% if package.author == current_user or package.checkPerm(current_user, "APPROVE_NEW") %}
{% if review_thread %}
2018-07-28 16:08:08 +02:00
<h2>{% if review_thread.private %}&#x1f512;{% endif %} {{ review_thread.title }}</h2>
{% if review_thread.private %}
<p><i>
This thread is only visible to the package owner and users of
Editor rank or above.
</i></p>
{% endif %}
2018-06-11 23:49:25 +02:00
{% from "macros/threads.html" import render_thread %}
{{ render_thread(review_thread, current_user) }}
{% else %}
<div class="box box_grey alert alert-info">
Privately ask a question or give feedback
<a class="alert_right button" href="{{ url_for('new_thread_page', pid=package.id, title='Package approval comments') }}">Open Thread</a>
</div>
{% endif %}
{% endif %}
2018-03-21 20:03:14 +01:00
{% endif %}
2018-03-20 03:17:33 +01:00
<h1>{{ package.title }} by {{ package.author.display_name }}</h1>
2018-03-26 11:52:25 +02:00
<ul class="screenshot_list">
{% for ss in package.screenshots %}
2018-05-25 20:06:05 +02:00
{% if ss.approved or package.checkPerm(current_user, "ADD_SCREENSHOTS") %}
<li>
<a href="{% if package.checkPerm(current_user, 'ADD_SCREENSHOTS') %}{{ ss.getEditURL() }}{% else %}{{ ss.url }}{% endif %}">
<img src="{{ ss.getThumbnailURL() }}" alt="{{ ss.title }}" />
</a>
</li>
{% endif %}
2018-03-26 11:52:25 +02:00
{% endfor %}
</ul>
2018-03-20 03:17:33 +01:00
<aside class="asideright box box_grey">
2018-05-21 23:42:02 +02:00
<h3>Details</h3>
2018-05-29 22:24:50 +02:00
2018-05-21 23:42:02 +02:00
<div class="box-body">
2018-05-29 22:24:50 +02:00
{% if not package.license.is_foss and not package.media_license.is_foss and package.type != package.type.TXP %}
<div class="box box_grey alert alert-error" style="margin-top: 0;">
<b>Warning:</b> Non-free code and media.
</div>
{% elif not package.license.is_foss and package.type != package.type.TXP %}
<div class="box box_grey alert alert-error" style="margin-top: 0;">
<b>Warning:</b> Non-free code.
</div>
{% elif not package.media_license.is_foss %}
<div class="box box_grey alert alert-error" style="margin-top: 0;">
<b>Warning:</b> Non-free media.
</div>
{% endif %}
2018-05-21 23:42:02 +02:00
<table>
<tr>
<td>Name</td>
<td>{{ package.name }}</td>
</tr>
2018-05-28 00:45:12 +02:00
{% if package.provides %}
2018-05-27 17:37:54 +02:00
<tr>
<td>Provides</td>
2018-05-27 17:51:46 +02:00
<td>{% for meta in package.provides %}
<a href="{{ url_for('meta_package_page', name=meta.name) }}">{{ meta.name }}</a>
{%- if not loop.last %}
,
{% endif %}
{% endfor %}</td>
2018-05-27 17:37:54 +02:00
</tr>
2018-05-28 00:45:12 +02:00
{% endif %}
2018-05-21 23:42:02 +02:00
<tr>
<td>Author</td>
<td class="{{ package.author.rank }}">
<a href="{{ url_for('user_profile_page', username=package.author.username) }}">
{{ package.author.display_name }}
</a>
</td>
</tr>
<tr>
<td>Type</td>
<td>{{ package.type.value }}</td>
</tr>
<tr>
<td>License</td>
2018-05-29 21:17:18 +02:00
<td>
2018-05-29 22:24:50 +02:00
{% if package.license == package.media_license %}
{{ package.license.name }}
{% elif package.type == package.type.TXP %}
{{ package.media_license.name }}
{% else %}
2018-05-29 21:17:18 +02:00
{{ package.license.name }} for code,<br />
{{ package.media_license.name }} for media.
{% endif %}
</td>
2018-05-21 23:42:02 +02:00
</tr>
2018-05-28 00:45:12 +02:00
<tr>
<td>Added</td>
<td>{{ package.created_at | datetime }}</td>
</tr>
2018-05-21 23:42:02 +02:00
</table>
2018-03-20 03:17:33 +01:00
2018-12-21 15:45:54 +01:00
<ul class="btnset linedbuttonset">
2018-05-29 22:24:50 +02:00
{% if package.getDownloadRelease() %}<li><a href="{{ package.getDownloadURL() }}" class="btn_green">Download</a></li>{% endif %}
2018-05-21 23:42:02 +02:00
{% if package.repo %}<li><a href="{{ package.repo }}">View Source</a></li>{% endif %}
{% if package.forums %}<li><a href="https://forum.minetest.net/viewtopic.php?t={{ package.forums }}">Forums</a></li>{% endif %}
{% if package.issueTracker %}<li><a href="{{ package.issueTracker }}">Issue Tracker</a></li>{% endif %}
{% if package.website %}<li><a href="{{ package.website }}">Website</a></li>{% endif %}
{% if package.checkPerm(current_user, "EDIT_PACKAGE") %}
<li><a href="{{ package.getEditURL() }}">Edit</a></li>
<li><a href="{{ package.getNewScreenshotURL() }}">Add screenshot</a></li>
{% endif %}
2018-05-29 21:51:42 +02:00
{# {% if current_user.is_authenticated %}
<li><a href="{{ package.getCreateEditRequestURL() }}">Suggest Changes</a></li>
2018-05-29 21:51:42 +02:00
{% endif %} #}
2018-05-21 23:42:02 +02:00
{% if package.checkPerm(current_user, "MAKE_RELEASE") %}
<li><a href="{{ package.getCreateReleaseURL() }}">Create Release</a></li>
{% endif %}
2018-07-28 16:19:30 +02:00
{% if package.approved and package.checkPerm(current_user, "CREATE_THREAD") %}
<li><a href="{{ url_for('new_thread_page', pid=package.id) }}">Open Thread</a></li>
{% endif %}
2018-05-25 19:28:24 +02:00
{% if package.checkPerm(current_user, "DELETE_PACKAGE") %}
<li><a href="{{ package.getDeleteURL() }}">Delete</a></li>
{% endif %}
2018-05-21 23:42:02 +02:00
</ul>
</div>
2018-03-20 03:17:33 +01:00
</aside>
<p class="package-short-large">{{ package.shortDesc }}</p>
{{ package.desc | markdown }}
2018-03-20 19:20:30 +01:00
<h3>Releases</h3>
<ul>
{% for rel in releases %}
2018-05-11 16:04:17 +02:00
{% if rel.approved or package.checkPerm(current_user, "MAKE_RELEASE") or package.checkPerm(current_user, "APPROVE_RELEASE") %}
<li>
{% if not rel.approved %}<i>{% endif %}
2018-07-28 19:33:36 +02:00
<a href="{{ rel.getDownloadURL() }}">{{ rel.title }}</a>{% if rel.commit_hash %}
2018-07-28 15:48:03 +02:00
[{{ rel.commit_hash | truncate(5, end='') }}]{% endif %},
2018-05-28 00:45:12 +02:00
created {{ rel.releaseDate | datetime }}.
2018-05-11 16:04:17 +02:00
{% if rel.task_id %}
<a href="{{ url_for('check_task', id=rel.task_id, r=package.getDetailsURL()) }}">Importing...</a>
2018-05-11 16:04:17 +02:00
{% elif not rel.approved %}
Waiting for approval.
2018-03-20 19:20:30 +01:00
{% endif %}
{% if package.checkPerm(current_user, "MAKE_RELEASE") or package.checkPerm(current_user, "APPROVE_RELEASE") %}
2018-05-11 16:04:17 +02:00
<a href="{{ rel.getEditURL() }}">Edit
{% if not rel.task_id and not rel.approved and package.checkPerm(current_user, "APPROVE_RELEASE") %}
2018-05-11 16:04:17 +02:00
/ Approve
{% endif %}
</a>
{% endif %}
{% if not rel.approved %}</i>{% endif %}
</li>
{% endif %}
2018-03-20 19:20:30 +01:00
{% else %}
<li>No releases available.</li>
{% endfor %}
</ul>
2018-03-23 20:25:48 +01:00
2018-03-26 12:28:34 +02:00
<h3>Tags</h3>
<ul>
{% for t in package.tags %}
<li>{{ t.title }}</li>
{% else %}
<li>No tags.</li>
{% endfor %}
</ul>
2018-05-27 22:42:31 +02:00
<!-- <table class="table-topalign">
2018-05-21 23:20:28 +02:00
<tr>
2018-05-27 22:42:31 +02:00
<td> -->
2018-05-21 23:20:28 +02:00
<h3>Dependencies</h3>
<ul>
2018-05-27 22:31:11 +02:00
{% for dep in package.dependencies %}
<li>
{%- if dep.package %}
<a href="{{ dep.package.getDetailsURL() }}">{{ dep.package.title }}</a> by {{ dep.package.author.display_name }}
{% elif dep.meta_package %}
<a href="{{ url_for('meta_package_page', name=dep.meta_package.name) }}">{{ dep.meta_package.name }}</a>
{% else %}
{{ "Excepted package or meta_package in dep!" | throw }}
{% endif %}
{% if dep.optional %}
[optional]
{% endif %}
</li>
2018-05-21 23:20:28 +02:00
{% else %}
2018-05-27 22:31:11 +02:00
<li><i>No dependencies</i></li>
2018-05-21 23:20:28 +02:00
{% endfor %}
</ul>
2018-05-27 22:42:31 +02:00
<!-- </td>
2018-05-21 23:20:28 +02:00
<td>
<h3>Required by</h3>
<ul>
2018-05-27 22:42:31 +02:00
{% for p in package.dependents %}
2018-05-21 23:20:28 +02:00
<li><a href="{{ p.getDetailsURL() }}">{{ p.title }}</a> by {{ p.author.display_name }}</li>
{% else %}
{% if not package.softdependents %}
<li>No dependents.</li>
{% endif %}
{% endfor %}
{% for p in package.softdependents %}
<li><a href="{{ p.getDetailsURL() }}">{{ p.title }}</a> by {{ p.author.display_name }} [optional]</li>
2018-05-27 22:42:31 +02:00
{% endfor %}
2018-05-21 23:20:28 +02:00
</ul>
</td>
</tr>
2018-05-27 22:42:31 +02:00
</table> -->
2018-05-21 23:20:28 +02:00
2018-05-29 21:51:42 +02:00
{#
{% if current_user.is_authenticated or requests %}
<h3>Edit Requests</h3>
<ul>
{% for r in requests %}
<li>
<a href="{{ r.getURL() }}">{{ r.title }}</a>
by
<a href="{{ url_for('user_profile_page', username=r.author.username) }}">{{ r.author.display_name }}</a>
</li>
{% else %}
<li>No edit requests have been made.</li>
{% endfor %}
</ul>
{% endif %}
#}
{% if alternatives %}
<h3>Alternatives</h3>
<ul>
{% for p in alternatives %}
<li><a href="{{ p.getDetailsURL() }}">{{ p.title }} by {{ p.author.display_name }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% if similar_topics %}
<h3>Similar Forum Topics</h3>
{% if not package.approved and package.type == package.type.MOD %}
<div class="box box_grey alert alert-warning">
Please make sure that this package has the right to
the name '{{ package.name }}'.
See the
<a href="/policy_and_guidance/">Inclusion Policy</a>
for more info.
</div>
{% endif %}
<ul>
{% for t in similar_topics %}
<li>
[{{ t.type.value }}]
<a href="https://forum.minetest.net/viewtopic.php?t={{ t.topic_id }}">
{{ t.title }} by {{ t.author.display_name }}
</a>
2018-07-07 00:15:56 +02:00
{% if t.wip %}[WIP]{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
2018-07-28 16:08:08 +02:00
{% if threads %}
<h3>Threads</h3>
2018-07-28 16:19:30 +02:00
{% if package.approved and package.checkPerm(current_user, "CREATE_THREAD") %}
<p><a href="{{ url_for('new_thread_page', pid=package.id) }}">Open Thread</a></p>
{% endif %}
2018-07-28 16:08:08 +02:00
{% from "macros/threads.html" import render_threadlist %}
{{ render_threadlist(threads) }}
{% endif %}
2018-03-19 19:08:41 +01:00
{% endblock %}