Ajusting welcome module
This commit is contained in:
@@ -0,0 +1 @@
|
||||
404
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user