23 lines
954 B
Twig
23 lines
954 B
Twig
{% embed '@theme/embeds/card.html.twig' with {'margin_bottom': 0} %}
|
|
{% block box_title %}
|
|
{{ title }}
|
|
{% endblock %}
|
|
{% block box_body %}
|
|
<link rel="stylesheet" href="{{ asset('bundles/kimaiheatmap/heatmap.css') }}">
|
|
<div id="heatmap-container"
|
|
data-url="{{ path('heatmap_data') }}"
|
|
style="min-height: 150px; overflow-x: auto;">
|
|
</div>
|
|
<script src="{{ asset('bundles/kimaiheatmap/heatmap.js') }}"></script>
|
|
<script type="text/javascript">
|
|
var initHeatmap = function() {
|
|
KimaiHeatmap.init(document.getElementById('heatmap-container'));
|
|
};
|
|
{% if kimai_context is defined and kimai_context.javascriptRequest %}
|
|
initHeatmap();
|
|
{% else %}
|
|
document.addEventListener('kimai.initialized', initHeatmap);
|
|
{% endif %}
|
|
</script>
|
|
{% endblock %}
|
|
{% endembed %}
|