12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- {{ 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 %}
|