You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
386 B
17 lines
386 B
{% extends 'base.html.twig' %} |
|
|
|
{% block body %} |
|
<h1>{{ 'heading.roles'|trans }}</h1> |
|
|
|
{# Flash messages for feedback #} |
|
{% for message in app.flashes('success') %} |
|
<div class="alert alert-success"> |
|
{{ message }} |
|
</div> |
|
{% endfor %} |
|
|
|
{# Form for adding a new role #} |
|
{{ form_start(form) }} |
|
{{ form_widget(form) }} |
|
|
|
{% endblock %}
|
|
|