Skip to content

Commit

Permalink
fix: fix/improve html table
Browse files Browse the repository at this point in the history
Add missing html table description and headers
  • Loading branch information
dfranco committed Dec 27, 2023
1 parent 9d1c4f7 commit 3b064b9
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions application/views/templates/pages/settings.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,14 @@
<h4>Users</h4>
<div class="table-responsive">
<table class="table table-condensed table-striped">
<tr>
<th>Username</th>
<th>Email</th>
<th>Action</th>
</tr>
<caption>User(s) list</caption>
<thead>
<tr>
<th>Username</th>
<th>Email</th>
<th>Action</th>
</tr>
</thead>
{% for user in users %}
<tr>
<td>{{ user.username() }}</td>
Expand Down

0 comments on commit 3b064b9

Please sign in to comment.