PDF rausgenommen

This commit is contained in:
aschwarz
2023-01-23 11:03:31 +01:00
parent 82d562a322
commit a6523903eb
28078 changed files with 4247552 additions and 2 deletions

View File

@ -0,0 +1,34 @@
{% import 'ajaxMacros.twig' as ajax %}
{{ ajax.errorDiv() }}
<script type="text/javascript">
{% if userCanEditGoals %}
{% if onlyShowAddNewGoal is not defined %}
piwik.goals = {{ goalsJSON|raw }};
{% endif %}
{% else %}
piwik.goals = {{ goalsJSON|raw }};
{% endif %}
</script>
<div piwik-manage-goals
{% if userCanEditGoals %}
{% if onlyShowAddNewGoal is not defined %}
{% if idGoal %}
show-goal="{{ idGoal|e('js') }}"
{% endif %}
{% else %}
show-add-goal="true"
{% endif %}
{% endif %}>
{% if onlyShowAddNewGoal is not defined %}
{% include "@Goals/_listGoalEdit.twig" %}
{% endif %}
{% if userCanEditGoals %}
{% include "@Goals/_formAddGoal.twig" %}
{% endif %}
<a id='bottom'></a>
</div>