diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2017-06-18 15:34:59 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2017-06-20 16:03:39 +0200 |
commit | f44dba22fc1a566cb156d9e6eda5afc353163eda (patch) | |
tree | 870a52157a1005ac0add79259cbdff0d4859b3f7 | |
parent | bead8b42da4f17238dc0d5e0f90184b224ec5df7 (diff) | |
download | wallabag-f44dba22fc1a566cb156d9e6eda5afc353163eda.tar.gz wallabag-f44dba22fc1a566cb156d9e6eda5afc353163eda.tar.zst wallabag-f44dba22fc1a566cb156d9e6eda5afc353163eda.zip |
Get rid of masked value in listing
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/baggy/SiteCredential/index.html.twig | 2 | ||||
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/material/SiteCredential/index.html.twig | 4 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/SiteCredential/index.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/SiteCredential/index.html.twig index c128bceb..324854ad 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/SiteCredential/index.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/SiteCredential/index.html.twig | |||
@@ -15,7 +15,6 @@ | |||
15 | <thead> | 15 | <thead> |
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> | ||
19 | <th>{{ 'site_credential.list.actions'|trans }}</th> | 18 | <th>{{ 'site_credential.list.actions'|trans }}</th> |
20 | </tr> | 19 | </tr> |
21 | </thead> | 20 | </thead> |
@@ -23,7 +22,6 @@ | |||
23 | {% for credential in credentials %} | 22 | {% for credential in credentials %} |
24 | <tr> | 23 | <tr> |
25 | <td>{{ credential.host }}</td> | 24 | <td>{{ credential.host }}</td> |
26 | <td>{{ credential.username }}</td> | ||
27 | <td> | 25 | <td> |
28 | <a href="{{ path('site_credentials_edit', { 'id': credential.id }) }}">{{ 'site_credential.list.edit_action'|trans }}</a> | 26 | <a href="{{ path('site_credentials_edit', { 'id': credential.id }) }}">{{ 'site_credential.list.edit_action'|trans }}</a> |
29 | </td> | 27 | </td> |
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 4d30a692..324854ad 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 | |||
@@ -15,8 +15,6 @@ | |||
15 | <thead> | 15 | <thead> |
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> | ||
19 | <th>{{ 'site_credential.form.password_label'|trans }}</th> | ||
20 | <th>{{ 'site_credential.list.actions'|trans }}</th> | 18 | <th>{{ 'site_credential.list.actions'|trans }}</th> |
21 | </tr> | 19 | </tr> |
22 | </thead> | 20 | </thead> |
@@ -24,8 +22,6 @@ | |||
24 | {% for credential in credentials %} | 22 | {% for credential in credentials %} |
25 | <tr> | 23 | <tr> |
26 | <td>{{ credential.host }}</td> | 24 | <td>{{ credential.host }}</td> |
27 | <td>*****</td> | ||
28 | <td>*****</td> | ||
29 | <td> | 25 | <td> |
30 | <a href="{{ path('site_credentials_edit', { 'id': credential.id }) }}">{{ 'site_credential.list.edit_action'|trans }}</a> | 26 | <a href="{{ path('site_credentials_edit', { 'id': credential.id }) }}">{{ 'site_credential.list.edit_action'|trans }}</a> |
31 | </td> | 27 | </td> |