mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-04-18 19:28:57 +00:00

* fix year in dashboard * make batch actions accessible via javascript * bump packages * remove BOM from CSV * rebuild assets * fix duplicated automated-email warning
13 lines
441 B
Twig
13 lines
441 B
Twig
{% extends 'emails/layout.html.twig' %}
|
|
|
|
{% block title %}
|
|
{{ 'registration.title'|trans({'%username%': user.displayName}, 'email') }}
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<p>{{ 'registration.intro'|trans({'%email%': user.email}, 'email') }}<p>
|
|
|
|
<spacer size="16"></spacer>
|
|
|
|
<button class="large primary" href="{{ confirmationUrl }}">{{ 'registration.button'|trans({'%url%': confirmationUrl}, 'email') }}</button>
|
|
{% endblock %}
|