mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 22:58:28 +01:00
* Decouple Shopify from Store * Decouple shopify from store blob * Update BTCPayServer.Tests.csproj * Make sure shopify obj is set * make shopify a system plugin
49 lines
1.5 KiB
Text
49 lines
1.5 KiB
Text
@model IntegrationsViewModel
|
|
@{
|
|
Layout = "../Shared/_NavLayout.cshtml";
|
|
ViewData.SetActivePageAndTitle(StoreNavPages.Integrations, "Integrations");
|
|
}
|
|
|
|
<partial name="_StatusMessage"/>
|
|
|
|
@if (!ViewContext.ModelState.IsValid)
|
|
{
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
<ul class="list-group mb-3">
|
|
<vc:ui-extension-point location="store-integrations-list"></vc:ui-extension-point>
|
|
</ul>
|
|
|
|
<div class="row">
|
|
<div class="col-12">
|
|
<h4 class="mb-3 mt-5">
|
|
Other Integrations
|
|
</h4>
|
|
<p>
|
|
Take a look at documentation for the list of other integrations we support and the directions on how to enable them:
|
|
<ul>
|
|
<li>
|
|
<a href="https://docs.btcpayserver.org/WooCommerce/" target="_blank">WooCommerce</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://docs.btcpayserver.org/Drupal/" target="_blank">Drupal</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://docs.btcpayserver.org/Magento/" target="_blank">Magento</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://docs.btcpayserver.org/PrestaShop/" target="_blank">PrestaShop</a>
|
|
</li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
@section Scripts {
|
|
@await Html.PartialAsync("_ValidationScriptsPartial")
|
|
}
|