mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 01:23:48 +01:00
Show placeholder message in unadded topics profile section when empty
This commit is contained in:
parent
d04e060854
commit
f7d4b4bf6d
@ -72,7 +72,7 @@
|
||||
<a class="nav-link" href="{{ url_for('user_profile_page', username=current_user.username) }}">Profile</a>
|
||||
</li class="nav-item">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="{{ url_for('user_profile_page', username=current_user.username) }}#unadded-packages">Your unadded topics</a>
|
||||
<a class="nav-link" href="{{ url_for('user_profile_page', username=current_user.username) }}#unadded-topics">Your unadded topics</a>
|
||||
</li class="nav-item">
|
||||
{% if current_user.canAccessTodoList() %}
|
||||
<li class="nav-item"><a class="nav-link" href="{{ url_for('todo_page') }}">Work Queue</a></li>
|
||||
|
@ -128,11 +128,12 @@
|
||||
{% from "macros/packagegridtile.html" import render_pkggrid %}
|
||||
{{ render_pkggrid(packages, show_author=False) }}
|
||||
|
||||
{% if topics_to_add %}
|
||||
{% if current_user == user or (current_user.is_authenticated and current_user.rank.atLeast(UserRank.EDITOR)) %}
|
||||
<div class="card mt-3">
|
||||
<a name="unadded-packages"></a>
|
||||
<h2 class="card-header">Unadded Packages</h2>
|
||||
<a name="unadded-topics"></a>
|
||||
<h2 class="card-header">Unadded topics</h2>
|
||||
|
||||
{% if topics_to_add %}
|
||||
<p class="card-body">
|
||||
List of your forum topics which do not have a matching package.
|
||||
Topics with a strikethrough have been marked as discarded.
|
||||
@ -140,6 +141,9 @@
|
||||
|
||||
{% from "macros/topics.html" import render_topics_table %}
|
||||
{{ render_topics_table(topics_to_add, show_author=False, show_discard=True, current_user=current_user) }}
|
||||
{% else %}
|
||||
<p>Congrats! You don't have any topics which aren't on CDB.</p>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user