10 lines
285 B
HTML
10 lines
285 B
HTML
{% from "components/icon.html" import Icon %}
|
|
|
|
{% macro Tooltip(message,title='Help') -%}
|
|
|
|
<button type="button" tabindex="0" class="icon-tooltip" v-tooltip.top="{content: '{{message}}', container: false}">
|
|
{{ Icon('help') }}<span>{{ title }}</span>
|
|
</button>
|
|
|
|
{%- endmacro %}
|