mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
53 lines
1.3 KiB
HTML
53 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
Notifications
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if current_user.notifications %}
|
|
<form method="post" action="{{ url_for('notifications.clear') }}" class="float-right">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
|
|
<input type="submit" class="btn btn-primary" value="Clear All" />
|
|
</form>
|
|
{% endif %}
|
|
|
|
<h1>Notifications</h1>
|
|
|
|
<div class="list-group mt-3">
|
|
{% for n in current_user.notifications %}
|
|
<a class="list-group-item list-group-item-action" href="{{ n.url }}">
|
|
<div class="row">
|
|
{% if n.package %}
|
|
|
|
<div class="col-sm-auto text-muted">
|
|
<img
|
|
class="img-fluid"
|
|
style="max-height: 22px; max-width: 22px;"
|
|
src="{{ n.package.getThumbnailURL(1) }}" />
|
|
|
|
<span class="pl-2">
|
|
{{ n.package.title }}
|
|
</span>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="col-sm">
|
|
{{ n.title}}
|
|
</div>
|
|
|
|
<div class="col-sm-auto text-muted text-right">
|
|
<span class="pr-2">{{ n.causer.display_name }}</span>
|
|
<img
|
|
class="img-fluid user-photo img-thumbnail img-thumbnail-1"
|
|
style="max-height: 22px;"
|
|
src="{{ n.causer.getProfilePicURL() }}" />
|
|
</div>
|
|
</div>
|
|
</a>
|
|
{% else %}
|
|
<p class="list-group-item"><i>No notifications</i></p>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|