mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
49 lines
1.4 KiB
HTML
49 lines
1.4 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
New Thread
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% if package and current_user != package.author and not current_user.rank.atLeast(current_user.rank.EDITOR) and package.issueTracker %}
|
|
<div class="alert alert-warning">
|
|
Found a bug? Post on the <a href="{{ package.issueTracker }}">issue tracker</a> instead.<br />
|
|
If the package shouldn't be on CDB - for example, if it doesn't work at all - then please let us know here.
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% from "macros/forms.html" import render_field, render_submit_field, render_checkbox_field %}
|
|
<form method="POST" action="" enctype="multipart/form-data">
|
|
{{ form.hidden_tag() }}
|
|
{{ render_field(form.title) }}
|
|
|
|
<div class="row mt-0 mb-4 comments mx-0">
|
|
<div class="col-md-1 p-1">
|
|
<img class="img-responsive user-photo img-thumbnail img-thumbnail-1" src="{{ current_user.getProfilePicURL() }}">
|
|
</div>
|
|
<div class="col">
|
|
<div class="card">
|
|
<div class="card-header {{ current_user.rank.name }}">
|
|
{{ current_user.display_name }}
|
|
<a name="reply"></a>
|
|
</div>
|
|
<div class="card-body">
|
|
{{ render_field(form.comment, label="", class_="m-0", fieldclass="form-control markdown") }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{ render_checkbox_field(form.private, class_="my-3") }}
|
|
<p>
|
|
Only you, the package author, and users of Editor rank
|
|
and above can read private threads.
|
|
</p>
|
|
|
|
{{ render_submit_field(form.submit) }}
|
|
</form>
|
|
|
|
|
|
{% endblock %}
|