Skip to content

Commit a9bf7f6

Browse files
Minor fix
1 parent bb1be56 commit a9bf7f6

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

src/ApiBundle/Resources/views/admin/client/index.html.twig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
</div>
1616
</tr>
1717
<tr>
18-
<th scope="col"><i class="fa fa-user" aria-hidden="true"></i> {{ 'label.client_name'|trans }}</th>
19-
<th scope="col"><i class="fa fa-user" aria-hidden="true"></i> {{ 'label.client_randomid'|trans }}</th>
20-
<th scope="col"><i class="fa fa-user" aria-hidden="true"></i> {{ 'label.client_secret'|trans }}</th>
18+
<th scope="col">{{ 'label.client_name'|trans }}</th>
19+
<th scope="col">{{ 'label.client_randomid'|trans }}</th>
20+
<th scope="col">{{ 'label.client_secret'|trans }}</th>
2121
</tr>
2222
</thead>
2323
<tbody>
@@ -36,7 +36,7 @@
3636
</tr>
3737
{% else %}
3838
<tr>
39-
<td colspan="4" align="center">{{ 'client.no_clients_found'|trans }}</td>
39+
<td>{{ 'client.no_clients_found'|trans }}</td>
4040
</tr>
4141
{% endfor %}
4242
</tbody>

src/ApiBundle/Resources/views/admin/user/index.html.twig

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
</div>
1616
</tr>
1717
<tr>
18-
<th scope="col"><i class="fa fa-user" aria-hidden="true"></i> {{ 'label.user_firstname'|trans }}</th>
19-
<th scope="col"><i class="fa fa-user" aria-hidden="true"></i> {{ 'label.user_lastname'|trans }}</th>
20-
<th scope="col"><i class="fa fa-user" aria-hidden="true"></i> {{ 'label.user_roles'|trans }}</th>
21-
<th scope="col"><i class="fa fa-user" aria-hidden="true"></i> {{ 'label.user_username'|trans }}</th>
22-
<th scope="col"><i class="fa fa-user" aria-hidden="true"></i> {{ 'label.user_email'|trans }}</th>
23-
<th scope="col"><i class="fa fa-user" aria-hidden="true"></i> {{ 'label.user_dob'|trans }}</th>
18+
<th>{{ 'label.user_firstname'|trans }}</th>
19+
<th>{{ 'label.user_lastname'|trans }}</th>
20+
<th>{{ 'label.user_roles'|trans }}</th>
21+
<th>{{ 'label.user_username'|trans }}</th>
22+
<th>{{ 'label.user_email'|trans }}</th>
23+
<th>{{ 'label.user_dob'|trans }}</th>
2424
</tr>
2525
</thead>
2626
<tbody>
@@ -42,7 +42,7 @@
4242
</tr>
4343
{% else %}
4444
<tr>
45-
<td colspan="4" align="center">{{ 'user.no_users_found'|trans }}</td>
45+
<td>{{ 'user.no_users_found'|trans }}</td>
4646
</tr>
4747
{% endfor %}
4848
</tbody>

0 commit comments

Comments
 (0)