refabrique des commandes
This commit is contained in:
@ -102,7 +102,9 @@ $(document).ready(function(){
|
||||
<div class="form-horizontal">
|
||||
<h4>@SR["Fill in your book query"]</h4>
|
||||
<hr />
|
||||
|
||||
<div class="form-group" has-feedback>
|
||||
@Html.ValidationSummary()
|
||||
<fieldset>
|
||||
<legend><label for="EventDate" class="col-md-2 control-label" >
|
||||
@SR["EventDate"]
|
||||
@ -142,6 +144,7 @@ $(document).ready(function(){
|
||||
</div>
|
||||
@Html.HiddenFor(model=>model.Client.Id)
|
||||
@Html.HiddenFor(model=>model.PerformerId)
|
||||
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
@ -1,7 +0,0 @@
|
||||
|
||||
<form enctype="application/x-www-form-urlencoded" method="post" class="navbar-right">
|
||||
@Html.AntiForgeryToken()
|
||||
<label for="username">username:</label><input name="username" placeholder="(Votre Nom d'utilisateur)"/>
|
||||
<label for="password">password:</label><input name="password" placeholder="(Votre mot de passe)" type="password"/>
|
||||
<input formaction="/api/token/post" class="btn btn-lg btn-success" name="Getatoken" type="submit" value="Getatoken" />
|
||||
</form>
|
@ -1,4 +1,4 @@
|
||||
@model Yavsc.Models.PerformerProfile
|
||||
@model PerformerProfile
|
||||
|
||||
<div class="performer @(Model.Active?"active":"inactive")">
|
||||
@Model.Performer?.UserName (rating: @Model.Rate%)
|
||||
|
@ -1,11 +1,14 @@
|
||||
@using Yavsc
|
||||
@using Yavsc.Models
|
||||
@using Yavsc.Models.Google
|
||||
@using Yavsc.Models.Booking
|
||||
@using Yavsc.ViewModels.Account
|
||||
@using Yavsc.ViewModels.Manage
|
||||
@using Yavsc;
|
||||
@using Yavsc.Models;
|
||||
@using Yavsc.Models.Google;
|
||||
@using Yavsc.Models.Booking;
|
||||
@using Yavsc.Models.Market;
|
||||
@using Yavsc.Models.Billing;
|
||||
@using Yavsc.Models.Workflow;
|
||||
@using Yavsc.ViewModels.Account;
|
||||
@using Yavsc.ViewModels.Manage;
|
||||
@using Yavsc.ViewModels.Calendar;
|
||||
@using Microsoft.AspNet.Identity
|
||||
@using Microsoft.AspNet.Identity;
|
||||
@using Microsoft.AspNet.Mvc;
|
||||
@using Microsoft.Extensions.Localization;
|
||||
@using Microsoft.AspNet.Mvc.Localization;
|
||||
|
Reference in New Issue
Block a user