aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/GroupBundle/Resources/views/Manage/requests.html.twig
blob: 36d069ce5999d3ad0552b8b5dc3ffe065c5d43e1 (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
{% extends "WallabagCoreBundle::layout.html.twig" %}

{% block title %}{{ 'group.requests.list'|trans }}{% endblock %}

{% block content %}
<div class="row">
    <div class="col s12">

        <table class="table">
            <thead>
            <tr>
                <th>{{ 'group.requests.username'|trans }}</th>
                <th>{{ 'group.requests.action'|trans }}</th>
            </tr>
            </thead>

            <tbody>
            {% for request in requests %}
                <tr>
                    <td>{{ request.username }}</td>
                    <td>
                        <a class="btn waves-effect" href="{{ path('group-activate', {'group': group.id, 'user': request.id, 'accept': 1}) }}"><i class="material-icons">check</i></a>
                        <a class="btn waves-effect red" href="{{ path('group-activate', {'group': group.id, 'user': request.id, 'accept': 2}) }}"><i class="material-icons">close</i></a>
                    </td>
                </tr>
            {% endfor %}
            </tbody>
        </table>
    </div>
</div>
{% endblock %}