refabrique des commandes

This commit is contained in:
2016-06-14 03:37:57 +02:00
parent a0531fbc39
commit b0b22ea494
38 changed files with 2484 additions and 262 deletions

View File

@ -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>

View File

@ -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>

View File

@ -1,4 +1,4 @@
@model Yavsc.Models.PerformerProfile
@model PerformerProfile
<div class="performer @(Model.Active?"active":"inactive")">
@Model.Performer?.UserName (rating: @Model.Rate%)

View File

@ -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;