parent
bbc8648ee3
commit
3d8dc4404b
@ -1,20 +0,0 @@ |
|||||||
{% extends "@ChamiloTheme/Layout/base-layout.html.twig" %} |
|
||||||
|
|
||||||
{% block chamilo_wrap %} |
|
||||||
{% if js is defined %} |
|
||||||
{% autoescape false %} |
|
||||||
{% for item in js %} |
|
||||||
{{ item }} |
|
||||||
{% endfor %} |
|
||||||
{% endautoescape %} |
|
||||||
{% endif %} |
|
||||||
{% block content %} |
|
||||||
{% autoescape false %} |
|
||||||
{{ content }} |
|
||||||
{% endautoescape %} |
|
||||||
{% endblock %} |
|
||||||
{% endblock %} |
|
||||||
|
|
||||||
{# Some how twig does not override completely a block that used an "include" call #} |
|
||||||
{% block chamilo_footer %} |
|
||||||
{% endblock %} |
|
@ -0,0 +1,43 @@ |
|||||||
|
{% extends '@ChamiloTheme/Layout/base-layout.html.twig' %} |
||||||
|
|
||||||
|
{% block page_content %} |
||||||
|
{% autoescape false %} |
||||||
|
|
||||||
|
{% if js is defined %} |
||||||
|
{% for item in js %} |
||||||
|
{{ item }} |
||||||
|
{% endfor %} |
||||||
|
{% endif %} |
||||||
|
|
||||||
|
<section class="section-content"> |
||||||
|
|
||||||
|
{% autoescape false %} |
||||||
|
|
||||||
|
<section class="container-fluid"> |
||||||
|
{% if actions != '' %} |
||||||
|
{{ actions }} |
||||||
|
{% endif %} |
||||||
|
</section> |
||||||
|
|
||||||
|
{% block chamilo_messages %} |
||||||
|
{% include '@ChamiloTheme/FlashMessage/render.html.twig' %} |
||||||
|
{% endblock %} |
||||||
|
|
||||||
|
{# Content #} |
||||||
|
{% block content %} |
||||||
|
<section class="container-fluid"> |
||||||
|
{{ form_search }} |
||||||
|
<div class="card mb-4"> |
||||||
|
<div class="card-body"> |
||||||
|
{{ table }} |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
{{ extra }} |
||||||
|
</section> |
||||||
|
{% endblock %} |
||||||
|
{% endautoescape %} |
||||||
|
|
||||||
|
</section> |
||||||
|
|
||||||
|
{% endautoescape %} |
||||||
|
{% endblock %} |
Loading…
Reference in new issue