]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig
Fix reviews
[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>
bead8b42 19 <th>{{ 'site_credential.form.password_label'|trans }}</th>
f92fcb53
JB
20 <th>{{ 'site_credential.list.actions'|trans }}</th>
21 </tr>
22 </thead>
23 <tbody>
24 {% for credential in credentials %}
25 <tr>
26 <td>{{ credential.host }}</td>
bead8b42
TC
27 <td>*****</td>
28 <td>*****</td>
f92fcb53 29 <td>
fc6d92c6 30 <a href="{{ path('site_credentials_edit', { 'id': credential.id }) }}">{{ 'site_credential.list.edit_action'|trans }}</a>
f92fcb53
JB
31 </td>
32 </tr>
33 {% endfor %}
34 </tbody>
35 </table>
36 <br />
37 <p>
fc6d92c6 38 <a href="{{ path('site_credentials_new') }}" class="waves-effect waves-light btn">{{ 'site_credential.list.create_new_one'|trans }}</a>
f92fcb53
JB
39 </p>
40 </div>
41 </div>
42 </div>
43 </div>
44 </div>
45
46{% endblock %}