11 lines
406 B
Twig
11 lines
406 B
Twig
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
{% import "team/actions.html.twig" as actions %}
|
|
|
|
{% block page_title %}{{ 'teams.title'|trans({}, 'teams') }}{% endblock %}
|
|
{% block page_actions %}{{ actions.team(team, 'edit') }}{% endblock %}
|
|
|
|
{% block main %}
|
|
{% include 'team/member-form.html.twig' %}
|
|
{% endblock %}
|