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/export/table_pdf.tpl

85 lines
2.1 KiB

{{ organization }}
<h2 align="center"> {{ pdf_title }} </h2>
{% if pdf_description %}
{{ pdf_description }}
<br /><br />
{% endif %}
<table align="center" width="100%">
<tr>
<td>
<strong>{{ "Teacher" | get_lang }}:</strong> {{ pdf_teachers }}
</td>
</tr>
{% if pdf_session_info %}
<tr>
<td>
<strong>{{ "Session" | get_lang }}:</strong> {{ pdf_session_info.name }}
</td>
{% if pdf_session_info.description %}
<td>
<strong>{{ "Description" | get_lang }}:</strong> {{ pdf_session_info.description }}
</td>
{% endif %}
</tr>
{% if pdf_session_info.date_start != '0000-00-00' and pdf_session_info.date_end != '0000-00-00' %}
<tr>
<td>
<strong>{{ "PeriodToDisplay" | get_lang }}:</strong> {{ "FromDateXToDateY"| get_lang | format(pdf_session_info.date_start, pdf_session_info.date_end ) }}
</td>
</tr>
{% endif %}
{% endif %}
{% if pdf_course_info %}
<tr>
<td>
<strong>{{ "Course" | get_lang }}:</strong> {{ pdf_course_info.title }} ({{ pdf_course_info.code }})
{% if pdf_course_category %}
<strong>{{ "Category" | get_lang }}:</strong> {{ pdf_course_category }}
{% endif %}
</td>
</tr>
{% endif %}
<tr>
<td>
<strong>{{ "Date" | get_lang }}:</strong> {{ pdf_date }}
</td>
</tr>
</table>
<br />
{{ pdf_content }}
{% if add_signatures == true %}
<br />
<br />
<table style="text-align:center" width="100%">
<tr>
<td>
_____________________________
<br />
{{ "Drh" | get_lang }}
</td>
<td>
_____________________________
<br />
{{ "Teacher" | get_lang }}
</td>
<td>
_____________________________
<br />
{{ "Date" | get_lang }}
</td>
</tr>
</table>
{% endif %}