Add from and to date to form index
This commit is contained in:
parent
d3c1e89a03
commit
e45a59c5ff
|
@ -73,6 +73,8 @@
|
|||
<table cellspacing="0" cellpadding="0" border="0" class="custom-table custom-table-sm">
|
||||
<thead>
|
||||
<th>Name</th>
|
||||
<th>Von</th>
|
||||
<th>Bis</th>
|
||||
<th></th>
|
||||
</thead>
|
||||
|
||||
|
@ -80,6 +82,12 @@
|
|||
<td>
|
||||
<div v-text="form.name"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div v-text="form.from_human"></div>
|
||||
</td>
|
||||
<td>
|
||||
<div v-text="form.to_human"></div>
|
||||
</td>
|
||||
<td>
|
||||
<a v-tooltip="`Bearbeiten`" href="#" class="ml-2 inline-flex btn btn-warning btn-sm"
|
||||
@click.prevent="edit(form)"><ui-sprite src="pencil"></ui-sprite></a>
|
||||
|
|
Loading…
Reference in New Issue