2020-09-13 17:12:42 -05:00
|
|
|
@model IntegrationsViewModel
|
|
|
|
@{
|
|
|
|
Layout = "../Shared/_NavLayout.cshtml";
|
2021-04-08 15:32:42 +02:00
|
|
|
ViewData.SetActivePageAndTitle(StoreNavPages.Integrations, "Integrations", Context.GetStoreData().StoreName);
|
2020-09-13 17:12:42 -05:00
|
|
|
}
|
|
|
|
|
2021-04-08 15:32:42 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-8">
|
|
|
|
@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">
|
|
|
|
<vc:ui-extension-point location="store-integrations-list"></vc:ui-extension-point>
|
|
|
|
</ul>
|
2020-09-16 23:42:46 -05:00
|
|
|
|
2021-04-08 15:32:42 +02:00
|
|
|
<h4 class="mt-5 mb-3">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:</p>
|
|
|
|
<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>
|
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
|
|
|
}
|