Rearrange source to src dir.
[redakcja.git] / src / toolbar / templates / toolbar / button.html
1 {% if button.link %}
2 <a href="{{button.link}}" target="_blank">
3 {% endif %}
4 <button type="button"
5        data-ui-action="{{ button.scriptlet_id }}"
6        data-ui-action-params="{{ button.params|escape }}"
7        data-ui-accesskey="{{ button.accesskey }}"
8        {% if button.tooltip %}title="{{ button.full_tooltip }}"{% endif %} >
9        {{ button.label|safe }}
10 </button>
11 {% if button.link %}
12 </a>
13 {% endif %}