forked from vergnet/site-accueil-insa
80 lines
3.2 KiB
Twig
80 lines
3.2 KiB
Twig
{% extends 'admin.twig' %}
|
|
|
|
{% set title %}{{ 'CoreAdminHome_MenuGeneralSettings'|translate }}{% endset %}
|
|
|
|
{% block content %}
|
|
{% set feedbackHelp %}
|
|
<div piwik-content-block content-title="{{ 'CoreAdminHome_NeedHelp'|translate }}">
|
|
<div>
|
|
{{ 'CoreAdminHome_HowToGetHelp'|translate }}
|
|
<br />
|
|
<br />
|
|
<a href="{{ linkTo({'module': 'Feedback', 'action': 'index'}) }}">{{ 'CoreAdminHome_LearnMore'|translate }}</a>
|
|
</div>
|
|
</div>
|
|
{% endset %}
|
|
|
|
{% if isSuperUser %}
|
|
<div class="row">
|
|
{% if hasQuickLinks or hasSystemSummary %}
|
|
<div class="col s12 {% if isFeedbackEnabled %}m4{% else %}m6{% endif %}">
|
|
{% if hasQuickLinks %}<div piwik-widget-loader='{"module":"CoreHome","action":"quickLinks"}'></div>{% endif %}
|
|
{% if hasSystemSummary %}<div piwik-widget-loader='{"module":"CoreHome","action":"getSystemSummary"}'></div>{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
{% if hasDiagnostics or hasTrackingFailures %}
|
|
<div class="col s12 {% if isFeedbackEnabled %}m4{% else %}m6{% endif %}">
|
|
{% if hasDiagnostics %}
|
|
<div piwik-widget-loader='{"module":"Installation","action":"getSystemCheck"}'></div>
|
|
{% endif %}
|
|
{% if hasTrackingFailures %}
|
|
<div piwik-widget-loader='{"module":"CoreAdminHome","action":"getTrackingFailures"}'></div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
<div class="col s12 m4">
|
|
{% if isFeedbackEnabled %}
|
|
{{ feedbackHelp|raw }}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% elseif isFeedbackEnabled %}
|
|
{{ feedbackHelp|raw }}
|
|
{% endif %}
|
|
|
|
{% if hasPremiumFeatures and isMarketplaceEnabled and isInternetEnabled %}
|
|
<div piwik-widget-loader='{"module":"Marketplace","action":"getPremiumFeatures"}'></div>
|
|
{% endif %}
|
|
{% if hasNewPlugins and isMarketplaceEnabled and isInternetEnabled %}
|
|
<div piwik-widget-loader='{"module":"Marketplace","action":"getNewPlugins", "isAdminPage": "1"}'></div>
|
|
{% endif %}
|
|
|
|
{{ postEvent('Template.adminHome') }}
|
|
|
|
<style type="text/css">
|
|
#content .piwik-donate-call {
|
|
padding: 0;
|
|
border: 0;
|
|
max-width: none;
|
|
}
|
|
.theWidgetContent .rss {
|
|
margin: -10px -15px;
|
|
}
|
|
</style>
|
|
|
|
{% if hasDonateForm or hasPiwikBlog %}
|
|
<div class="row">
|
|
{% if hasDonateForm %}
|
|
<div class="col s12 {% if hasPiwikBlog %}m6{% endif %}">
|
|
<div piwik-widget-loader='{"module":"CoreHome","action":"getDonateForm","widget": "0"}'></div>
|
|
</div>
|
|
{% endif %}
|
|
{% if hasPiwikBlog and isInternetEnabled %}
|
|
<div class="col s12 {% if hasDonateForm %}m6{% endif %}">
|
|
<div piwik-widget-loader='{"module":"RssWidget","action":"rssPiwik"}'></div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|