Welcome to mirror list, hosted at ThFree Co, Russian Federation.

notifications.twig « templates « ExampleUI « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f47be46a0f5f59e062b5b07b75961d38ea6d438d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends 'admin.twig' %}

{% set title %}UI Notification demo{% endset %}

{% block content %}
    <h2>Inline notification example</h2>

    <div style="display:inline-block;margin-top:10px;" id="exampleUI_notifications">
        <div piwik-notification
             notification-title="Info:"
             noclear="true"
             context="info">
            This is an example for an inline notification. Have you noticed the success message disappeared after a few seconds?
        </div>
    </div>
{% endblock %}