mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
107 lines
3.3 KiB
HTML
107 lines
3.3 KiB
HTML
{% macro render_thread(thread, current_user) -%}
|
|
|
|
<ul class="comments mt-4 mb-0">
|
|
{% for r in thread.replies %}
|
|
<li class="row my-2 mx-0">
|
|
<div class="col-md-1 p-1">
|
|
<a href="{{ url_for('users.profile', username=r.author.username) }}">
|
|
<img class="img-responsive user-photo img-thumbnail img-thumbnail-1" src="{{ r.author.getProfilePicURL() }}">
|
|
</a>
|
|
</div>
|
|
<div class="col">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<a class="author {{ r.author.rank.name }}"
|
|
href="{{ url_for('users.profile', username=r.author.username) }}">
|
|
{{ r.author.display_name }}
|
|
</a>
|
|
<a name="reply-{{ r.id }}" class="text-muted float-right"
|
|
href="{{ url_for('threads.view', id=thread.id) }}#reply-{{ r.id }}">
|
|
{{ r.created_at | datetime }}
|
|
</a>
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
{{ r.comment | markdown }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% if current_user.is_authenticated %}
|
|
<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>
|
|
|
|
{% if current_user.canCommentRL() %}
|
|
<form method="post" action="{{ url_for('threads.view', id=thread.id)}}" class="card-body">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
|
|
<textarea class="form-control markdown" required maxlength=500 name="comment"></textarea><br />
|
|
<input class="btn btn-primary" type="submit" value="Comment" />
|
|
</form>
|
|
{% else %}
|
|
<div class="card-body">
|
|
<textarea class="form-control" readonly disabled>Please wait before commenting again.</textarea><br />
|
|
<input class="btn btn-primary" type="submit" disabled value="Comment" />
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endmacro %}
|
|
|
|
{% macro render_threadlist(threads, compact=False) -%}
|
|
{% for t in threads %}
|
|
<a class="list-group-item list-group-item-action"
|
|
href="{{ url_for('threads.view', id=t.id) }}">
|
|
{% if compact %}
|
|
{% if t.private %}🔒 {% endif %}
|
|
<strong>{{ t.title }}</strong>
|
|
by {{ t.author.display_name }}
|
|
{% else %}
|
|
<div class="row">
|
|
<div class="col-sm">
|
|
<span class="mr-3">
|
|
{% if not t.review %}
|
|
<i class="fas fa-comment-alt" style="color:#666;"></i>
|
|
{% elif t.review.recommends %}
|
|
<i class="fas fa-thumbs-up" style="color:#6f6;"></i>
|
|
{% else %}
|
|
<i class="fas fa-thumbs-down" style="color:#f66;"></i>
|
|
{% endif %}
|
|
</span>
|
|
|
|
{% if t.private %}🔒 {% endif %}
|
|
<strong>{{ t.title }}</strong>
|
|
by {{ t.author.display_name }}
|
|
</div>
|
|
|
|
<div class="col-sm">
|
|
{% if t.package %}
|
|
{{ _("%(title)s by %(author)s",
|
|
title="<b>" | safe + t.package.title + "</b>" | safe,
|
|
author=t.package.author.display_name) }}
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="col-sm text-muted text-right">
|
|
{{ t.created_at | datetime }}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
</a>
|
|
{% else %}
|
|
<p>{% if list_group %}class="list-group-item"{% endif %}><i>No threads found</i></p>
|
|
{% endfor %}
|
|
{% endmacro %}
|