contentdb/app/templates/notifications/list.html

105 lines
2.7 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>
<a href="{{ url_for('users.email_notifications', username=current_user.username) }}" class="btn btn-secondary float-right mr-3">
{{ _("Edit email notification settings") }}
</a>
{% endif %}
2020-07-11 00:12:15 +02:00
<h1>Notifications</h1>
2020-12-05 23:36:00 +01:00
{% if current_user.notifications %}
<p>
Newest first.
</p>
{% endif %}
{% if editor_notifications %}
<h2>Your Notifications</h2>
{% endif %}
2020-07-11 00:12:15 +02:00
<div class="list-group mt-3">
{% for n in 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
2020-12-05 02:51:50 +01:00
class="img-fluid"
style="max-height: 22px; max-width: 22px;"
2020-12-14 21:50:37 +01:00
src="{{ n.package.get_thumbnail_url(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
2020-12-05 02:51:50 +01:00
class="img-fluid user-photo img-thumbnail img-thumbnail-1"
2020-07-11 00:12:15 +02:00
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 %}
</div>
{% if editor_notifications %}
<h2>Editor Notifications</h2>
<div class="list-group mt-3">
{% for n in editor_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;"
2020-12-14 21:50:37 +01:00
src="{{ n.package.get_thumbnail_url(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 %}
</div>
{% endif %}
2018-05-13 18:55:28 +02:00
{% endblock %}