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.
26 lines
748 B
26 lines
748 B
![]()
1 year ago
|
{% extends "@ChamiloCore/Layout/layout_one_col.html.twig" %}
|
||
|
{% import '@ChamiloCore/Macros/box.html.twig' as display %}
|
||
|
|
||
|
{% block content %}
|
||
|
{{ toolbar }}
|
||
|
{{ form }}
|
||
|
{# {% for question in pagination %}#}
|
||
|
{% for i in start..end %}
|
||
|
{% if pagination[i] is defined %}
|
||
|
{% set question = pagination[i] %}
|
||
|
{{ display.collapse(
|
||
|
question.iid,
|
||
|
'#' ~ question.courseCode ~'-'~ question.iid ~ ' - ' ~ question.question,
|
||
|
question.questionData,
|
||
|
false,
|
||
|
false
|
||
|
)
|
||
|
}}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
|
||
|
{% if question_count > pagination_length %}
|
||
|
{{ pagination }}
|
||
|
{% endif %}
|
||
|
{% endblock %}
|