mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
Improve thread list design further
This commit is contained in:
parent
94e91e33b8
commit
1daf59b7db
@ -64,25 +64,41 @@
|
||||
{% for t in threads %}
|
||||
<a class="list-group-item list-group-item-action"
|
||||
href="{{ url_for('threads.view', id=t.id) }}">
|
||||
{% if not compact %}
|
||||
<span class="text-muted float-right">
|
||||
{{ t.created_at | datetime }}
|
||||
</span>
|
||||
{% 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>
|
||||
|
||||
<span class="mr-2">
|
||||
{% 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 %}
|
||||
|
||||
{% if t.private %}🔒 {% endif %}
|
||||
<strong>{{ t.title }}</strong>
|
||||
by {{ t.author.display_name }}
|
||||
</a>
|
||||
{% else %}
|
||||
<p>{% if list_group %}class="list-group-item"{% endif %}><i>No threads found</i></p>
|
||||
|
Loading…
Reference in New Issue
Block a user