22 lines
584 B
Plaintext
22 lines
584 B
Plaintext
@using Microsoft.AspNetCore.Mvc.Localization
|
|
@using gehGassi.Web.Helper
|
|
@using gehGassi.Permissions
|
|
@inject IViewLocalizer Localizer
|
|
@{
|
|
ViewData["Title"] = Localizer["Menu_ShopSettings"];
|
|
}
|
|
@section pageTitle{
|
|
<a href="@Url.Action("Index", "ShopSettings")">@Localizer["Menu_ShopSettings"]</a>
|
|
}
|
|
|
|
<section id="shopSettingsContainer">
|
|
|
|
<div id="detail">
|
|
|
|
</div>
|
|
@Html.Hidden("jsEditUrl", Url.Action("Edit", "ShopSettings"))
|
|
|
|
@section Scripts{
|
|
<system-js url="~/scripts/Views/ShopSettings/index.js" fresh-import="true"></system-js>
|
|
}
|
|
</section> |