mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 01:23:48 +01:00
Fix profile page crash when not logged in
This commit is contained in:
parent
5ab8c2f0f1
commit
fc3a481e6f
@ -17,7 +17,7 @@
|
||||
</a>
|
||||
{% endif %}
|
||||
|
||||
{% if current_user.rank.atLeast(current_user.rank.MODERATOR) and user.email %}
|
||||
{% if current_user.is_authenticated and current_user.rank.atLeast(current_user.rank.MODERATOR) and user.email %}
|
||||
<a class="btn btn-secondary float-right mr-3" href="{{ url_for('admin.send_single_email', username=user.username) }}">
|
||||
{{ _("Send Email") }}
|
||||
</a>
|
||||
|
Loading…
Reference in New Issue
Block a user