mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-29 10:05:03 +00:00
24 lines
560 B
Twig
24 lines
560 B
Twig
<div class="col-10 mt-5">
|
|
{# vue component #}
|
|
<div id="homepage_widget"></div>
|
|
|
|
{% include '@ChillMain/Homepage/fast_actions.html.twig' %}
|
|
</div>
|
|
|
|
|
|
{% block css %}
|
|
{{ encore_entry_link_tags('page_homepage_widget') }}
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script type="text/javascript">
|
|
window.homepage_config = JSON.stringify({
|
|
defaultTab: 'MyTickets',
|
|
displayTabs: ['MyCustoms', 'MyTickets', 'MyNotifications']
|
|
});
|
|
</script>
|
|
|
|
{{ encore_entry_script_tags('page_homepage_widget') }}
|
|
|
|
{% endblock %}
|