27 lines
638 B
Plaintext
27 lines
638 B
Plaintext
@{
|
|
ViewData["Title"] = "Crud Inquilino";
|
|
}
|
|
@{
|
|
Layout = "_Layout";
|
|
}
|
|
|
|
<h3>Inquilinos</h3>
|
|
<table border="1">
|
|
<thead>
|
|
<tr>
|
|
<th>Dni</th>
|
|
<th>Nombre</th>
|
|
<th>Apellido</th>
|
|
<th>Dirección</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="inquilino-data" hx-get="/api/inquilino" hx-trigger="load" hx-swap="innerHTML">
|
|
<!-- Los datos serán cargados aquí -->
|
|
</tbody>
|
|
</table>
|
|
|
|
<button hx-get="/Home/InquilinoForm/0" hx-target="#addInquilino" hx-swap="innerHTML">Añadir Inquilino</button>
|
|
|
|
<div id="addInquilino"></div>
|
|
|