2020-09-13 17:12:42 -05:00
|
|
|
@model IntegrationsViewModel
|
|
|
|
@{
|
|
|
|
Layout = "../Shared/_NavLayout.cshtml";
|
2021-12-31 08:36:38 +01:00
|
|
|
ViewData.SetActivePage(StoreNavPages.Integrations, "Integrations", Context.GetStoreData().Id);
|
2020-09-13 17:12:42 -05:00
|
|
|
}
|
|
|
|
|
2021-04-08 15:32:42 +02:00
|
|
|
<div class="row">
|
2022-01-27 03:56:46 +01:00
|
|
|
<div class="col-xl-8 col-xxl-constrain">
|
2022-01-17 17:19:27 -08:00
|
|
|
<h3 class="mb-0 mb-4">@ViewData["Title"]</h3>
|
2021-04-08 15:32:42 +02:00
|
|
|
@if (!ViewContext.ModelState.IsValid)
|
|
|
|
{
|
2020-09-13 17:12:42 -05:00
|
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
2021-04-08 15:32:42 +02:00
|
|
|
}
|
2020-09-13 17:12:42 -05:00
|
|
|
|
2021-04-08 15:32:42 +02:00
|
|
|
<ul class="list-group mb-3">
|
2021-12-31 08:36:38 +01:00
|
|
|
<vc:ui-extension-point location="store-integrations-list" model="@Model" />
|
2021-04-08 15:32:42 +02:00
|
|
|
</ul>
|
2020-09-16 23:42:46 -05:00
|
|
|
|
2022-01-17 17:19:27 -08:00
|
|
|
<h3 class="mt-5 mb-3">Other Integrations</h3>
|
2021-04-08 15:32:42 +02:00
|
|
|
<p>Take a look at documentation for the list of other integrations we support and the directions on how to enable them:</p>
|
|
|
|
<ul>
|
2021-07-06 10:35:42 +02:00
|
|
|
<li><a href="https://docs.btcpayserver.org/WooCommerce/" target="_blank" rel="noreferrer noopener">WooCommerce</a></li>
|
|
|
|
<li><a href="https://docs.btcpayserver.org/Drupal/" target="_blank" rel="noreferrer noopener">Drupal</a></li>
|
|
|
|
<li><a href="https://docs.btcpayserver.org/Magento/" target="_blank" rel="noreferrer noopener">Magento</a></li>
|
|
|
|
<li><a href="https://docs.btcpayserver.org/PrestaShop/" target="_blank" rel="noreferrer noopener">PrestaShop</a></li>
|
2021-04-08 15:32:42 +02:00
|
|
|
</ul>
|
2020-09-13 17:12:42 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-05-19 04:39:27 +02:00
|
|
|
@section PageFootContent {
|
2021-04-08 15:32:42 +02:00
|
|
|
<partial name="_ValidationScriptsPartial" />
|
2020-09-13 17:12:42 -05:00
|
|
|
}
|