Files
kimai2/app/Resources/views/admin/user/edit.html.twig
Kevin Papst cc269d3142 improved form handling
improved profile editing
added activity editing
2016-11-12 23:22:47 +01:00

10 lines
380 B
Twig

{% extends 'base.html.twig' %}
{% block page_title %}{{ 'edit_profile.title'|trans }}{% endblock %}
{% block page_subtitle %}{{ 'edit_profile.subtitle'|trans({'%username%': user.username}) }}{% endblock %}
{% block main %}
{{ include('default/_flash_messages.html.twig') }}
{{ include('default/_form.html.twig', {'title': user.username, 'form': form}) }}
{% endblock %}