aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig
index c128bceb..4d30a692 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig
@@ -16,6 +16,7 @@
16 <tr> 16 <tr>
17 <th>{{ 'site_credential.form.host_label'|trans }}</th> 17 <th>{{ 'site_credential.form.host_label'|trans }}</th>
18 <th>{{ 'site_credential.form.username_label'|trans }}</th> 18 <th>{{ 'site_credential.form.username_label'|trans }}</th>
19 <th>{{ 'site_credential.form.password_label'|trans }}</th>
19 <th>{{ 'site_credential.list.actions'|trans }}</th> 20 <th>{{ 'site_credential.list.actions'|trans }}</th>
20 </tr> 21 </tr>
21 </thead> 22 </thead>
@@ -23,7 +24,8 @@
23 {% for credential in credentials %} 24 {% for credential in credentials %}
24 <tr> 25 <tr>
25 <td>{{ credential.host }}</td> 26 <td>{{ credential.host }}</td>
26 <td>{{ credential.username }}</td> 27 <td>*****</td>
28 <td>*****</td>
27 <td> 29 <td>
28 <a href="{{ path('site_credentials_edit', { 'id': credential.id }) }}">{{ 'site_credential.list.edit_action'|trans }}</a> 30 <a href="{{ path('site_credentials_edit', { 'id': credential.id }) }}">{{ 'site_credential.list.edit_action'|trans }}</a>
29 </td> 31 </td>