migration net9.0
This commit is contained in:
@ -80,11 +80,6 @@
|
||||
<li><a asp-controller="Announces" class="badge" >
|
||||
<img src="@SiteSettings.Value.Logo" alt="announces" title="Annonces @SiteSettings.Value.Title" /></a></li>
|
||||
}
|
||||
@if ((int)ViewData["HaircutCommandCount"]>0) {
|
||||
<li><a asp-controller="HairCutCommand" class="badge" >
|
||||
<img src="~/images/shoppingcart.svg" alt="basket" title="Vos bons de commande" />(@ViewData["HaircutCommandCount"])</a></li>
|
||||
}
|
||||
|
||||
}
|
||||
@section header {
|
||||
<script src="~/lib/bootstrap/js/carousel.js" asp-append-version="true"></script>
|
||||
|
@ -1,4 +1,4 @@
|
||||
@model Yavsc.Models.Messaging.Notification
|
||||
@model Notification
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Create";
|
||||
|
@ -1,4 +1,4 @@
|
||||
@model Yavsc.Models.Messaging.Notification
|
||||
@model Notification
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Delete";
|
||||
|
@ -1,4 +1,4 @@
|
||||
@model Yavsc.Models.Messaging.Notification
|
||||
@model Notification
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Details";
|
||||
|
@ -1,4 +1,4 @@
|
||||
@model Yavsc.Models.Messaging.Notification
|
||||
@model Notification
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Edit";
|
||||
|
@ -1,4 +1,4 @@
|
||||
@model IEnumerable<Yavsc.Models.Messaging.Notification>
|
||||
@model IEnumerable<Notification>
|
||||
|
||||
@{
|
||||
ViewData["Title"] = "Index";
|
||||
|
@ -18,7 +18,6 @@
|
||||
<ul class="dropdown-menu" aria-labelledby="dropdown04">
|
||||
<li><a class="dropdown-item" asp-controller="Bug" asp-action="Index">Bugs</a></li>
|
||||
<li><a class="dropdown-item" asp-controller="HyperLink" asp-action="Index">HyperLink</a></li>
|
||||
<li><a class="dropdown-item" asp-controller="LiveFlow" asp-action="Index">LiveFlow</a></li>
|
||||
<li><a class="dropdown-item" asp-controller="Feature" asp-action="Index">Features</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -11,6 +11,7 @@
|
||||
@using Yavsc.Models.Auth;
|
||||
@using Yavsc.Models.Identity;
|
||||
@using Yavsc.Models.Access;
|
||||
@using Yavsc.Abstract.Models.Messaging;
|
||||
@using Yavsc.Billing;
|
||||
@using Yavsc.Server.Models.Calendar;
|
||||
@using Yavsc.ViewModels.Blog;
|
||||
@ -28,7 +29,6 @@
|
||||
@using Microsoft.AspNetCore.Html;
|
||||
@using Microsoft.AspNetCore.Identity;
|
||||
@using Yavsc.Helpers;
|
||||
|
||||
@using PayPal.PayPalAPIInterfaceService.Model;
|
||||
|
||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||
|
Reference in New Issue
Block a user