mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-27 11:31:05 +00:00
Get rid of masked value in listing
This commit is contained in:
parent
bead8b42da
commit
f44dba22fc
2 changed files with 0 additions and 6 deletions
|
@ -15,7 +15,6 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>{{ 'site_credential.form.host_label'|trans }}</th>
|
<th>{{ 'site_credential.form.host_label'|trans }}</th>
|
||||||
<th>{{ 'site_credential.form.username_label'|trans }}</th>
|
|
||||||
<th>{{ 'site_credential.list.actions'|trans }}</th>
|
<th>{{ 'site_credential.list.actions'|trans }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -23,7 +22,6 @@
|
||||||
{% for credential in credentials %}
|
{% for credential in credentials %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ credential.host }}</td>
|
<td>{{ credential.host }}</td>
|
||||||
<td>{{ credential.username }}</td>
|
|
||||||
<td>
|
<td>
|
||||||
<a href="{{ path('site_credentials_edit', { 'id': credential.id }) }}">{{ 'site_credential.list.edit_action'|trans }}</a>
|
<a href="{{ path('site_credentials_edit', { 'id': credential.id }) }}">{{ 'site_credential.list.edit_action'|trans }}</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -15,8 +15,6 @@
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>{{ 'site_credential.form.host_label'|trans }}</th>
|
<th>{{ 'site_credential.form.host_label'|trans }}</th>
|
||||||
<th>{{ 'site_credential.form.username_label'|trans }}</th>
|
|
||||||
<th>{{ 'site_credential.form.password_label'|trans }}</th>
|
|
||||||
<th>{{ 'site_credential.list.actions'|trans }}</th>
|
<th>{{ 'site_credential.list.actions'|trans }}</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -24,8 +22,6 @@
|
||||||
{% for credential in credentials %}
|
{% for credential in credentials %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ credential.host }}</td>
|
<td>{{ credential.host }}</td>
|
||||||
<td>*****</td>
|
|
||||||
<td>*****</td>
|
|
||||||
<td>
|
<td>
|
||||||
<a href="{{ path('site_credentials_edit', { 'id': credential.id }) }}">{{ 'site_credential.list.edit_action'|trans }}</a>
|
<a href="{{ path('site_credentials_edit', { 'id': credential.id }) }}">{{ 'site_credential.list.edit_action'|trans }}</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in a new issue