24 lines
529 B
Twig
24 lines
529 B
Twig
|
<table class="table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th scope="col">Field</th>
|
||
|
<th scope="col">Value</th>
|
||
|
<th scope="col">Actions</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<th scope="row">Username</th>
|
||
|
<td>{{ user.username }}</td>
|
||
|
<td></td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th scope="row">Email</th>
|
||
|
<td>{{ user.email }}</td>
|
||
|
<td>
|
||
|
<button type="button" class="btn disabled" title="Not implemented">Change</button>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|