-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b51e9a3
commit c977807
Showing
4 changed files
with
42 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
|
||
/etc/build/* | ||
!/etc/build/.gitignore | ||
/.idea | ||
|
||
/tests/Application/yarn.lock | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{% extends '@SyliusShop/Account/RefundationDocument/layout.html.twig' %} | ||
|
||
{% import '@SyliusUi/Macro/messages.html.twig' as messages %} | ||
{% import '@SyliusUi/Macro/pagination.html.twig' as pagination %} | ||
{% import '@SyliusShop/Common/Macro/headers.html.twig' as headers %} | ||
{% import "@SyliusShop/Common/Macro/icons.html.twig" as icons %} | ||
|
||
{% block turbo_frame_content %} | ||
|
||
{{ block('grid_navigation') }} | ||
|
||
<div class="tab-content mt-4"> | ||
<div class="tab-pane fade show active" id="active-tab-pane" role="tabpanel" aria-labelledby="active-tab" tabindex="0"> | ||
{{ include('@SpearDevsSyliusPushNotificationsPlugin/Shop/Account/push_notification.html.twig') }} | ||
</div> | ||
<div class="tab-pane fade" id="realized-tab-pane" role="tabpanel" aria-labelledby="realized-tab" tabindex="1"> | ||
{{ include('@SpearDevsSyliusPushNotificationsPlugin/Shop/Account/push_notification_history.html.twig') }} | ||
</div> | ||
</div> | ||
{% endblock %} | ||
|
||
{% block grid_navigation %} | ||
{% set verified = resources.parameters.get('criteria').verified|default(null) %} | ||
|
||
<ul class="nav nav-tabs refundations-documents-tabs" role="tablist"> | ||
<li class="nav-item" role="presentation"> | ||
<button class="nav-link active" id="active-tab" data-bs-toggle="tab" data-bs-target="#active-tab-pane" type="button" role="tab" aria-controls="active-tab-pane" aria-selected="true"> | ||
{{ 'speardevs_sylius_push_notifications_plugin.ui.my_account.push_notifications'|trans }} | ||
</button> | ||
</li> | ||
<li class="nav-item" role="presentation"> | ||
<button class="nav-link" id="realized-tab" data-bs-toggle="tab" data-bs-target="#realized-tab-pane" type="button" role="tab" aria-controls="realized-tab-pane" aria-selected="false"> | ||
{{ 'speardevs_sylius_push_notifications_plugin.ui.my_account.push_notification_history'|trans }} | ||
</button> | ||
</li> | ||
</ul> | ||
{% endblock %} |