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/work/view.tpl

30 lines
670 B

<div class="page-header">
<h2>{{ work.title }}</h2>
</div>
<p>
{{ work.description }}
</p>
{# "UpdatedBy"|get_lang|format(comment.username) #}
{% if work_comment_enabled %}
<h4>
{{ 'Comments' | get_lang }}
</h4>
<hr>
<ul>
{% for comment in comments %}
<li>
<div class="page-header">
<a href="{{ _p.web_code }}"><img height="24" src="{{ comment.picture }}"/> {{ comment.username }} </a>- {{ comment.sent_at | api_get_local_time }}
</div>
<p>
{{ comment.comment }}
</p>
</li>
{% endfor %}
</ul>
<br />
<hr>
{{ form }}
{% endif %}