]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig
Update route & user verification
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / views / themes / material / SiteCredential / index.html.twig
CommitLineData
f92fcb53
JB
1{% extends "WallabagCoreBundle::layout.html.twig" %}
2
3{% block title %}{{ 'site_credential.page_title'|trans }}{% endblock %}
4
5{% block content %}
6
7 <div class="row">
8 <div class="col s12">
9 <div class="card-panel">
10 <div class="row">
11 <div class="input-field col s12">
12 <p class="help">{{ 'site_credential.description'|trans|raw }}</p>
13
14 <table class="bordered">
15 <thead>
16 <tr>
17 <th>{{ 'site_credential.form.host_label'|trans }}</th>
18 <th>{{ 'site_credential.form.username_label'|trans }}</th>
19 <th>{{ 'site_credential.list.actions'|trans }}</th>
20 </tr>
21 </thead>
22 <tbody>
23 {% for credential in credentials %}
24 <tr>
25 <td>{{ credential.host }}</td>
26 <td>{{ credential.username }}</td>
27 <td>
fc6d92c6 28 <a href="{{ path('site_credentials_edit', { 'id': credential.id }) }}">{{ 'site_credential.list.edit_action'|trans }}</a>
f92fcb53
JB
29 </td>
30 </tr>
31 {% endfor %}
32 </tbody>
33 </table>
34 <br />
35 <p>
fc6d92c6 36 <a href="{{ path('site_credentials_new') }}" class="waves-effect waves-light btn">{{ 'site_credential.list.create_new_one'|trans }}</a>
f92fcb53
JB
37 </p>
38 </div>
39 </div>
40 </div>
41 </div>
42 </div>
43
44{% endblock %}