chore(templates): Add checkmarcks on buttons

This commit is contained in:
Tom Hubrecht 2024-09-26 16:00:35 +02:00
parent 2978c1facb
commit bf5bce5fc5
Signed by: thubrecht
SSH key fingerprint: SHA256:r+nK/SIcWlJ0zFZJGHtlAoRwq1Rm+WcKAm5ADYMoQPc
2 changed files with 8 additions and 2 deletions

View file

@ -10,6 +10,9 @@
{% csrf_token %}
{% include "bulma/form.html" with form=form %}
<button class="button is-fullwidth mt-6">{% trans "Enregistrer" %}</button>
<button class="button is-fullwidth mt-6">
<span>{% trans "Enregistrer" %}</span>
<span class="icon"><i class="ti ti-check"></i></span>
</button>
</form>
{% endblock content %}

View file

@ -10,6 +10,9 @@
{% csrf_token %}
{% include "bulma/form.html" with form=form %}
<button class="button is-fullwidth mt-6">{% trans "Enregistrer" %}</button>
<button class="button is-fullwidth mt-6">
<span>{% trans "Enregistrer" %}</span>
<span class="icon"><i class="ti ti-check"></i></span>
</button>
</form>
{% endblock content %}