0
0
Fork 0
mirror of https://github.com/kevinpapst/kimai2.git synced 2025-01-10 19:47:35 +00:00
kevinpapst_kimai2/templates/wizard/profile.html.twig
Kevin Papst 9bd5965ecd
Release 2.0.21 (#4030)
* increase padding in wizard
* fix theme chooser in wizard
* improve dynamic export columns in PDFs
* added label for total column
* bump theme bundle
* improve avatar list spacing
* be more flexible parsing times - fixes #4031
2023-05-17 15:02:10 +02:00

39 lines
1.5 KiB
Twig

{% extends 'wizard/layout.html.twig' %}
{% block wizard_content %}
<div class="card-body text-center py-4 p-sm-6">
<h1 class="mt-2">{{ 'wizard.profile.title'|trans({}, 'wizard') }}</h1>
<p class="text-body-secondary">{{ 'wizard.profile.description'|trans({}, 'wizard') }}</p>
</div>
<div class="hr-text hr-text-center hr-text-spaceless">{{ 'wizard.separator'|trans({}, 'wizard') }}</div>
<div class="card-body">
<div class="mb-3">
{{ form_rest(form) }}
</div>
</div>
{% endblock %}
{% block javascripts %}
<script type="text/javascript">
window.addEventListener('load', function() {
const skinChooser = document.getElementById('form_skin');
if (skinChooser !== null) {
skinChooser.addEventListener('change', () => {
document.querySelectorAll('[data-bs-theme]').forEach(
element => {
element.dataset['bsTheme'] = (skinChooser.value === 'default' ? 'light' : 'dark');
}
);
});
}
const localeChooser = document.getElementById('form_language');
if (localeChooser !== null) {
localeChooser.addEventListener('change', (ev) => {
document.getElementById('form_reload').value = '1';
ev.target.form.submit();
});
}
});
</script>
{% endblock %}