mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2025-01-09 22:47:58 +00:00
12 lines
467 B
Twig
12 lines
467 B
Twig
{% extends 'default/layout.html.twig' %}
|
|
{% block title %}{{ 'Activity' | trans }} - {{ name }}{% endblock %}
|
|
{% block main_content %}
|
|
{% for activity in activities %}
|
|
<div class="padding-16-px margin-y-8-px border-radius-3-px background-color-night">
|
|
{{ render(controller(
|
|
'App\\Controller\\ActivityController::template',
|
|
{ activity : activity }
|
|
)) }}
|
|
</div>
|
|
{% endfor %}
|
|
{% endblock %} |