Add from and to date to form index

This commit is contained in:
philipp lang 2024-01-29 21:56:01 +01:00
parent d3c1e89a03
commit e45a59c5ff
1 changed files with 8 additions and 0 deletions

View File

@ -73,6 +73,8 @@
<table cellspacing="0" cellpadding="0" border="0" class="custom-table custom-table-sm"> <table cellspacing="0" cellpadding="0" border="0" class="custom-table custom-table-sm">
<thead> <thead>
<th>Name</th> <th>Name</th>
<th>Von</th>
<th>Bis</th>
<th></th> <th></th>
</thead> </thead>
@ -80,6 +82,12 @@
<td> <td>
<div v-text="form.name"></div> <div v-text="form.name"></div>
</td> </td>
<td>
<div v-text="form.from_human"></div>
</td>
<td>
<div v-text="form.to_human"></div>
</td>
<td> <td>
<a v-tooltip="`Bearbeiten`" href="#" class="ml-2 inline-flex btn btn-warning btn-sm" <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> @click.prevent="edit(form)"><ui-sprite src="pencil"></ui-sprite></a>