pitit refact

This commit is contained in:
Paul Schneider 2026-06-04 12:13:37 +01:00
commit 20713eef64
235 changed files with 5374 additions and 373 deletions

View file

@ -1,7 +1,7 @@
@{
ViewData["Title"] = "Conditions Générales de Vente";
ViewBag.Title = "Conditions Générales de Vente";
}
<h2>@ViewData["Title"]</h2>
<h2>@ViewBag.Title</h2>
<asciidoc>
Le paiement intervient à la commande, quelque soit la date d'intervention.

View file

@ -4,10 +4,10 @@
}
@{
ViewData["Title"] = "Annuler votre commande";
ViewBag.Title = "Annuler votre commande";
}
<h2>@ViewData["Title"]</h2>
<h2>@ViewBag.Title</h2>
<div>
<hr />

View file

@ -1,12 +1,12 @@
@model HairCutQuery
@{
ViewData["Title"] = "Command confirmation"+" "+ViewBag.Activity.Name;
ViewBag.Title = "Command confirmation"+" "+ViewBag.Activity.Name;
}
@section header {
<script src="https://www.paypalobjects.com/api/checkout.js"></script>
}
<h2>@ViewData["Title"]</h2>
<h2>@ViewBag.Title</h2>
<div class="form-horizontal">
<h4>Your book query</h4>
<hr />

View file

@ -4,10 +4,10 @@
}
@{
ViewData["Title"] = "Le detail de votre commande de prestation en coiffure à domicile";
ViewBag.Title = "Le detail de votre commande de prestation en coiffure à domicile";
}
<h2>@ViewData["Title"]</h2>
<h2>@ViewBag.Title</h2>
<div>
<hr />

View file

@ -1,6 +1,10 @@
@model Yavsc.Models.Haircut.HairCutQuery
@{ ViewData["Title"] = $"{ViewBag.Activity.Name}: Votre commande"; }
@await Html.PartialAsync("BrusherProfileScript",ViewData["PerfPrefs"])
@{ ViewBag.Title = $"{ViewBag.Activity.Name}: Votre commande";
}
@await Html.PartialAsync("BrusherProfileScript", Model, ViewBag.PerfPrefs)
@section header {
<script type="text/javascript" src="~/lib/moment/moment-with-locales.min.js"></script>
<script type="text/javascript" src="~/lib/eonasdan-bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js"></script>
@ -145,7 +149,7 @@
}
<em>@ViewBag.Activity.Description</em>
<h2>@ViewData["Title"]</h2>
<h2>@ViewBag.Title</h2>
@Html.DisplayFor(m=>m.PerformerProfile)

View file

@ -1,10 +1,10 @@
@model IEnumerable<HairCutQuery>
@{
ViewData["Title"] = "Vos commandes en coiffure à domicile";
ViewBag.Title = "Vos commandes en coiffure à domicile";
}
<h2>@ViewData["Title"]</h2>
<h2>@ViewBag.Title</h2>
<table class="table">
<tr>

View file

@ -1,10 +1,10 @@
@model IEnumerable<HairCutQuery>
@{
ViewData["Title"] = "Vos commandes en coiffure à domicile";
ViewBag.Title = "Vos commandes en coiffure à domicile";
}
<h2>@ViewData["Title"]</h2>
<h2>@ViewBag.Title</h2>
<table class="table">
<tr>