_commons.html
409 Bytes
{% macro feather_link(url, url_title, feather_style) -%}
<a class="feather-link" title="{{ url_title }}" href="{{ url }}">
<i data-feather="{{ feather_style }}" height="20" width="20"></i>
</a>
{%- endmacro -%}
{% macro edit_link(url) -%}
{{ feather_link(url, 'Modifier', 'edit') }}
{%- endmacro -%}
{% macro delete_link(url) -%}
{{ feather_link(url, 'Supprimer', 'trash-2') }}
{%- endmacro -%}