contentdb/app/templates/notifications/list.html

53 lines
1.3 KiB
HTML
Raw Normal View History

2018-05-13 18:55:28 +02:00
{% extends "base.html" %}
{% block title %}
Notifications
{% endblock %}
{% block content %}
{% if current_user.notifications %}
2020-07-11 00:12:15 +02:00
<form method="post" action="{{ url_for('notifications.clear') }}" class="float-right">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
2020-07-11 00:12:15 +02:00
<input type="submit" class="btn btn-primary" value="Clear All" />
</form>
{% endif %}
2020-07-11 00:12:15 +02:00
<h1>Notifications</h1>
<div class="list-group mt-3">
2018-05-13 18:55:28 +02:00
{% for n in current_user.notifications %}
2020-07-11 00:12:15 +02:00
<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-responsive"
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">
2020-07-11 00:12:15 +02:00
{{ n.title}}
</div>
<div class="col-sm-auto text-muted text-right">
<span class="pr-2">{{ n.causer.display_name }}</span>
2020-07-11 00:12:15 +02:00
<img
class="img-responsive user-photo img-thumbnail img-thumbnail-1"
style="max-height: 22px;"
src="{{ n.causer.getProfilePicURL() }}" />
</div>
</div>
</a>
2018-05-13 18:55:28 +02:00
{% else %}
2020-07-11 00:12:15 +02:00
<p class="list-group-item"><i>No notifications</i></p>
2018-05-13 18:55:28 +02:00
{% endfor %}
</ul>
{% endblock %}