pitit refact
This commit is contained in:
parent
e24208e77b
commit
20713eef64
235 changed files with 5374 additions and 373 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@
|
|||
}
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Annuler votre commande";
|
||||
ViewBag.Title = "Annuler votre commande";
|
||||
}
|
||||
|
||||
<h2>@ViewData["Title"]</h2>
|
||||
<h2>@ViewBag.Title</h2>
|
||||
|
||||
<div>
|
||||
<hr />
|
||||
|
|
|
|||
|
|
@ -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 />
|
||||
|
|
|
|||
|
|
@ -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 />
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue