Ajusting welcome module

This commit is contained in:
2022-01-23 19:14:48 +00:00
parent 4d67710159
commit 1bbfcb3a89
4 changed files with 52 additions and 4 deletions
+1
View File
@@ -0,0 +1 @@
404
+28
View File
@@ -0,0 +1,28 @@
<a href='auth/form' >Adicionar </a>
<div class="table-responsive">
<table class='table'>
<thead>
<tr>
<th>Id</th>
<th>Value</th>
<th>Description</th>
<th>Actions</th>
</tr>
</thead>
{{#list}}
<tr class="table-dark" data-id='{{id}}'>
<td>{{id}}</td>
<td>{{value}}</td>
<td>{{description}}</td>
<td>
<a href="auth/edit"> <i class="fa fa-pencil"></i></a>
<a href="auth/purge"> <i class="fa fa-fire"></i></a>
<a href="auth/"> <i class="fa fa-plus"></i></a>
<a href="auth/destroy"> <i class="fa fa-trash-o"></i></a>
</td>
</tr>
{{/list}}
</table>
</div>