mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
66 lines
1.7 KiB
HTML
66 lines
1.7 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ request.title }} - {{ package.title }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ request.title }} by {{ request.author.display_name }}</h1>
|
|
<p>
|
|
{% if request.status != 1 and request.status != 2 and request.checkPerm(current_user, 'EDIT_EDITREQUEST') %}
|
|
<a href="{{ request.getEditURL() }}">Edit</a> |
|
|
{% endif %}
|
|
Package: <a href="{{ package.getDetailsURL() }}">{{ package.title }}</a>
|
|
</p>
|
|
<p>
|
|
{% if request.desc %}
|
|
{{ request.desc }}
|
|
{% else %}
|
|
<i>No description given</i>
|
|
{% endif %}
|
|
</p>
|
|
{% if request.status == 1 %}
|
|
<div class="box box_grey alert alert-success">
|
|
This edit request was merged.
|
|
</div>
|
|
{% elif request.status == 2 %}
|
|
<div class="box box_grey alert alert-danger">
|
|
This edit request was rejected.
|
|
</div>
|
|
{% elif package.checkPerm(current_user, "APPROVE_CHANGES") %}
|
|
<div class="box box_grey alert">
|
|
Request can be merged.
|
|
|
|
<div class="alert_right">
|
|
<form method="post" action="{{ request.getApproveURL() }}">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
|
|
<input type="submit" value="Approve and Apply" />
|
|
</form>
|
|
<form method="post" action="{{ request.getRejectURL() }}">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
|
|
<input type="submit" value="Reject" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<table class="fancyTable t-mll">
|
|
<thead>
|
|
<tr>
|
|
<th>Property</th>
|
|
<th>Old</th>
|
|
<th>New</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for change in request.changes %}
|
|
<tr>
|
|
<td>{{ change.key.value }}</td>
|
|
<td>{{ change.oldValue }}</td>
|
|
<td>{{ change.newValue }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|