mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-21 09:44:23 +00:00
23 lines
751 B
Twig
23 lines
751 B
Twig
{% extends '@ChillPerson/AccompanyingCourse/layout.html.twig' %}
|
|
|
|
{% block title 'accompanying_course_work.List accompanying course work'|trans %}
|
|
|
|
{% block content %}
|
|
<div class="accompanying_course_work">
|
|
|
|
<h1>{{ block('title') }}</h1>
|
|
|
|
{% include 'ChillPersonBundle:AccompanyingCourseWork:list_by_accompanying_period.html.twig' %}
|
|
|
|
<ul class="record_actions sticky-form-buttons">
|
|
<li>
|
|
<a href="{{ chill_path_add_return_path('chill_person_accompanying_period_work_new', { 'id': accompanyingCourse.id }) }}"
|
|
class="btn btn-new">
|
|
{{ 'accompanying_course_work.create'|trans }}
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
</div>
|
|
{% endblock %}
|