40 lines
1.8 KiB
Twig
40 lines
1.8 KiB
Twig
{% macro errorDiv(id='ajaxError') %}
|
||
<div id="{{ id }}" style="display:none"></div>
|
||
{% endmacro %}
|
||
|
||
{% macro loadingDiv(id='ajaxLoadingDiv') %}
|
||
<div id="{{ id }}" style="display:none;">
|
||
<div class="loadingPiwik">
|
||
<img src="plugins/Morpheus/images/loading-blue.gif" alt="{{ 'General_LoadingData'|translate }}" />{{ 'General_LoadingData'|translate }}
|
||
</div>
|
||
<div class="loadingSegment">
|
||
{{ 'SegmentEditor_LoadingSegmentedDataMayTakeSomeTime'|translate }}
|
||
</div>
|
||
</div>
|
||
{% endmacro %}
|
||
|
||
{% macro requestErrorDiv(emailSuperUser, areAdsForProfessionalServicesEnabled = false, currentModule = '') %}
|
||
<div id="loadingError">
|
||
<div class="alert alert-danger">
|
||
|
||
{% if emailSuperUser is defined and emailSuperUser %}
|
||
{{ 'General_ErrorRequest'|translate('<a href="mailto:' ~ emailSuperUser ~ '">', '</a>')|raw }}
|
||
{% else %}
|
||
{{ 'General_ErrorRequest'|translate('', '') }}
|
||
{% endif %}
|
||
|
||
<br /><br />
|
||
{{ 'General_NeedMoreHelp'|translate }}
|
||
|
||
<a rel="noreferrer noopener" target="_blank" href="https://matomo.org/faq/troubleshooting/faq_19489/">{{ 'General_Faq'|translate }}</a> –
|
||
<a rel="noreferrer noopener" target="_blank" href="https://forum.matomo.org/">{{ 'Feedback_CommunityHelp'|translate }}</a>
|
||
|
||
{%- if areAdsForProfessionalServicesEnabled %}
|
||
–
|
||
{% set supportUrl = 'https://matomo.org/support/?pk_campaign=Help&pk_medium=AjaxError&pk_content=' ~ currentModule ~ '&pk_source=Piwik_App' %}
|
||
<a rel="noreferrer noopener" target="_blank" href="{{ supportUrl|e('html_attr') }}">{{ 'Feedback_ProfessionalHelp'|translate }}</a>
|
||
{%- endif %}.
|
||
</div>
|
||
</div>
|
||
{% endmacro %}
|