mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 14:50:50 +01:00
21 lines
689 B
Text
21 lines
689 B
Text
|
@using BTCPayServer.Client
|
||
|
@using Microsoft.AspNetCore.Mvc.TagHelpers
|
||
|
@using BTCPayServer.Abstractions.Extensions
|
||
|
@using BTCPayServer.Abstractions.TagHelpers
|
||
|
@using BTCPayServer.Views.Stores
|
||
|
@model BTCPayServer.Components.MainNav.MainNavViewModel
|
||
|
@{
|
||
|
var store = Context.GetStoreData();
|
||
|
}
|
||
|
|
||
|
@if (store != null)
|
||
|
{
|
||
|
|
||
|
<li class="nav-item" permission="@Policies.CanModifyStoreSettings">
|
||
|
<a asp-area="" asp-controller="UIShopify" asp-action="EditShopify" asp-route-storeId="@store.Id" class="nav-link @ViewData.IsActivePage("shopify", nameof(StoreNavPages))" id="StoreNav-Shopify">
|
||
|
<vc:icon symbol="shopify" />
|
||
|
<span>Shopify</span>
|
||
|
</a>
|
||
|
</li>
|
||
|
}
|