reorg
This commit is contained in:
parent
d000f77098
commit
40e8e08690
3487 changed files with 39 additions and 21 deletions
22
src/Yavsc.Org/Views/FormationSettings/Delete.cshtml
Normal file
22
src/Yavsc.Org/Views/FormationSettings/Delete.cshtml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
@model Yavsc.Models.Workflow.Profiles.FormationSettings
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Delete";
|
||||
}
|
||||
|
||||
<h2>Delete</h2>
|
||||
|
||||
<h3>AreYourSureYouWantToDeleteThis</h3>
|
||||
<div>
|
||||
<h4>FormationSettings</h4>
|
||||
<hr />
|
||||
<dl class="dl-horizontal">
|
||||
</dl>
|
||||
|
||||
<form asp-action="Delete">
|
||||
<div class="form-actions no-color">
|
||||
<input type="submit" value="Delete" class="btn btn-primary" /> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
18
src/Yavsc.Org/Views/FormationSettings/Details.cshtml
Normal file
18
src/Yavsc.Org/Views/FormationSettings/Details.cshtml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
@model Yavsc.Models.Workflow.Profiles.FormationSettings
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Details";
|
||||
}
|
||||
|
||||
<h2>Details</h2>
|
||||
|
||||
<div>
|
||||
<h4>FormationSettings</h4>
|
||||
<hr />
|
||||
<dl class="dl-horizontal">
|
||||
</dl>
|
||||
</div>
|
||||
<p>
|
||||
<a asp-action="Edit" asp-route-id="@Model.UserId">Edit</a> |
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</p>
|
||||
26
src/Yavsc.Org/Views/FormationSettings/Edit.cshtml
Normal file
26
src/Yavsc.Org/Views/FormationSettings/Edit.cshtml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
@model Yavsc.Models.Workflow.Profiles.FormationSettings
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Edit";
|
||||
}
|
||||
|
||||
<h2>Edit</h2>
|
||||
|
||||
<form asp-action="Edit">
|
||||
<div class="form-horizontal">
|
||||
<h4>FormationSettings</h4>
|
||||
<hr />
|
||||
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
||||
<input type="hidden" asp-for="UserId" />
|
||||
<div class="form-group">
|
||||
<div class="col-md-offset-2 col-md-10">
|
||||
<input type="submit" value="Save" class="btn btn-primary" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<div>
|
||||
<a asp-action="Index">Back to List</a>
|
||||
</div>
|
||||
|
||||
19
src/Yavsc.Org/Views/FormationSettings/Index.cshtml
Normal file
19
src/Yavsc.Org/Views/FormationSettings/Index.cshtml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
@model Yavsc.Models.Workflow.Profiles.FormationSettings
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Index";
|
||||
}
|
||||
|
||||
<h2>Index</h2>
|
||||
|
||||
@if (Model == null) {
|
||||
<a asp-action="Create" class="btn btn-primary">Positionner les paramêtres</a>
|
||||
} else {
|
||||
<a asp-action="Edit" class="btn btn-primary">Edit</a>
|
||||
<a asp-action="Delete" asp-route-id="@Model.UserId" class="btn btn-primary">Delete</a>
|
||||
<div>
|
||||
<h4>FormationSettings</h4>
|
||||
<hr />
|
||||
</div>
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue