* 'vnext' of https://github.com/pazof/yavsc: (38 commits) fixe le premier démarrage Corrige le mot de passe perdu d'un utilisateur au nom contenant des espaces traductions fixe la reccupération du mot de passe refabrique: MEP index blogs Specialized the book query notification Updated the Licence validity cleaned up log warnings label event date cleans the code Adds support for SIREN exceptions to validation from the external provider layout trads refactoring refactoring Google maps: a map image implements an AccessDenied page A better layout ... # Conflicts: # Yavsc.Api/project.lock.json # Yavsc.Client/Yavsc.Client.csproj # Yavsc.Client/packages.config # sendmsg/Program.cs
22 lines
552 B
Plaintext
22 lines
552 B
Plaintext
@model IEnumerable<Yavsc.Models.Billing.ExceptionSIREN>
|
|
|
|
<p>
|
|
<a asp-action="Create">Create New</a>
|
|
</p>
|
|
<table class="table">
|
|
<tr>
|
|
<th>Exceptions à la validation des code SIREN</th>
|
|
</tr>
|
|
|
|
@foreach (var item in Model) {
|
|
<tr>
|
|
<td>@item.SIREN</td>
|
|
<td>
|
|
<a asp-action="Edit" asp-route-id="@item.SIREN">Edit</a> |
|
|
<a asp-action="Details" asp-route-id="@item.SIREN">Details</a> |
|
|
<a asp-action="Delete" asp-route-id="@item.SIREN">Delete</a>
|
|
</td>
|
|
</tr>
|
|
}
|
|
</table>
|