Chamilo is a learning management system focused on ease of use and accessibility
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.
 
 
 
 
 
 
chamilo-lms/main/template/default/dashboard/index.tpl

21 lines
585 B

{% if blocklist == '' %}
<div id="columns">
<div class="row">
{% if columns|length > 0 %}
{% for key, column in columns %}
<div id="{{ key }}" class="col-md-6">
{% for item in column %}
{{ item }}
{% endfor %}
</div>
{% endfor %}
{% else %}
<div class="alert alert-info" role="alert">
{{ 'YouHaveNotEnabledBlocks'| get_lang }}
</div>
{% endif %}
</div>
</div>
{% else %}
{{ blocklist }}
{% endif %}