aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Notification/notifications.html.twig
blob: 49cc0d40b66eea3c3dbf75db011573e1cd6234ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{% extends "WallabagCoreBundle::layout.html.twig" %}

{% block title %}{{ 'notifications.list.page_title' | trans }}{% endblock %}

{% block content %}
    {{ parent() }}
    <div class="row notifications-page">
        <div class="col l8 offset-l2">
            {% if app.user.notifications is not empty %}
                <div class="row">
                    <a href="{{ path('notification-archive-all') }}" class="btn-light waves-effect waves-light right"><i class="material-icons">done_all</i> {{ 'notifications.list.mark_all_as_read' | trans }}</a>
                </div>
                <ul class="collection">
                {% for notification in notifications | slice(0, 10) %}
                    <li class="notification collection-item avatar{% if not notification.read %} light-blue lighten-5{% else %} grey-text{% endif %}">
                        <i class="material-icons circle">{% spaceless %}
                                {% if notification.type == constant('TYPE_ADMIN', notification) %}
                                    build
                                {% elseif notification.type == constant('TYPE_USER', notification) %}
                                    person
                                {% elseif notification.type == constant('TYPE_RELEASE', notification) %}
                                    new_releases
                                {% endif %}
                            {% endspaceless %}</i>
                        <span class="title">{{ notification.title | trans(notification.parameters) }}</span>
                        <p>{{ notification.description | trans | trans(notification.parameters) }}</p>
                        <time datetime="{{ notification.timestamp | date }}">{{ notification.timestamp | time_diff }}</time>
                        <div class="secondary-content">
                            {% if not notification.read %}
                                {% for action in notification.actions %}
                                    <a class="notification-action btn waves-effect waves-light {% spaceless %}
                                       {% if action.type == constant('TYPE_OK', action) %}
                                       {% elseif action.type == constant('TYPE_YES', action) %}
                                            cyan
                                       {% elseif action.type == constant('TYPE_NO', action) %}
                                            red
                                       {% elseif action.type == constant('TYPE_INFO', action) %}
                                            blue-grey
                                       {% endif %}
                                        {% endspaceless %}" data-id="{{ notification.id }}" href="{{ path('notification-archive-redirect', {'redirection': action.link, 'notification': notification.id}) }}">{{ action.label | trans(notification.parameters) }}</a>
                                {% endfor %}
                            <a href="{{ path('notification-archive', {'notification': notification.id}) }}" class="notification-action waves-effect waves-teal btn-flat"><i class="material-icons">check</i></a>
                            {% endif %}
                        </div>
                    </li>
                {% endfor %}
                </ul>
            {% else %}
                    {{ 'notifications.list.none' | trans }}
            {% endif %}
            {% if notifications.getNbPages > 1 %}
                {{ pagerfanta(notifications, 'twitter_bootstrap_translated', {'proximity': 1}) }}
            {% endif %}
        </div>
    </div>
{% endblock %}