templates/classroom/templating/fiche_repport_notes.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>
  6. Fiche de repport de notes
  7. </title>
  8. <link rel="stylesheet" type="text/css" href="{{ absolute_url(asset('assets/css/bootstrap.min.css')) }}" />
  9. <link rel="stylesheet" type="text/css" href="{{ absolute_url(asset('assets/css/pdf.css')) }}" />
  10. </head>
  11. <body>
  12. <header class="clearfix">
  13. {{ include('classroom/partials/header.html.twig') }}
  14. <h1 style=" text-align:center; ">
  15. <b>
  16. {% if(room.level.cycle.section.name=="Francophone") %}
  17. FICHES DE REPPORT DES NOTES
  18. {% else %}
  19. NOTES POSTING SHEETS
  20. {% endif %}
  21. </b>
  22. </h1>
  23. <div id="companyleft">
  24. <h5>
  25. <b>
  26. <span>
  27. {% if(room.level.cycle.section.name=="Francophone") %}
  28. CLASSE
  29. {% else %}
  30. CLASS
  31. {% endif %}
  32. </span>
  33. {{ room.name }}
  34. </b>
  35. </h5>
  36. </div>
  37. <div id="companyright">
  38. <h5>
  39. <b>
  40. <span>
  41. {% if(room.level.cycle.section.name=="Francophone") %}
  42. ANNEE SCOLAIRE &nbsp;
  43. {{ year }}
  44. {% else %}
  45. {{ year }}
  46. &nbsp; SCHOOL YEAR
  47. {% endif %}
  48. </span>
  49. </b>
  50. </h5>
  51. </div>
  52. </header>
  53. <main>
  54. <table>
  55. <thead>
  56. <tr>
  57. <th class="desc" style="width:30%;">
  58. <h7>
  59. <b>
  60. {% if(room.level.cycle.section.name=="Francophone") %}
  61. NOMS COMPLETS
  62. {% else %}
  63. FULL NAME
  64. {% endif %}
  65. </b>
  66. </h7>
  67. </th>
  68. <th style="width:6%;">
  69. <b>
  70. SESS1
  71. </b>
  72. </th>
  73. <th style="width:6%;">
  74. <b>
  75. SESS2
  76. </b>
  77. </th>
  78. <th style="width:6%;">
  79. <b>
  80. EB1
  81. </b>
  82. </th>
  83. <th style="width:6%;">
  84. <b>
  85. TRIM1
  86. </b>
  87. </th>
  88. <th style="width:6%;">
  89. <b>
  90. SESS3
  91. </b>
  92. </th>
  93. <th style="width:6%;">
  94. <b>
  95. SESS4
  96. </b>
  97. </th>
  98. <th style="width:6%;">
  99. <b>
  100. EB2
  101. </b>
  102. </th>
  103. <th style="width:5%;">
  104. <b>
  105. SESS5
  106. </b>
  107. </th>
  108. <th style="width:6%;">
  109. <b>
  110. SESS6
  111. </b>
  112. </th>
  113. <th style="width:6%;">
  114. <b>
  115. SESS7
  116. </b>
  117. </th>
  118. <th style="width:6%;">
  119. <b>
  120. EB3
  121. </b>
  122. </th>
  123. <th style="width:6%;">
  124. <b>
  125. TRIM3
  126. </b>
  127. </th>
  128. </tr>
  129. </thead>
  130. <tbody>
  131. {% for std in students %}
  132. <tr>
  133. <td>
  134. <b>
  135. {{ std.lastname }}
  136. </td>
  137. </td>
  138. <td></td>
  139. <td></td>
  140. <td></td>
  141. <td></td>
  142. <td></td>
  143. <td></td>
  144. <td></td>
  145. <td></td>
  146. <td></td>
  147. <td></td>
  148. <td></td>
  149. <td></td>
  150. </tr>
  151. {% endfor %}
  152. </tbody>
  153. </table>
  154. <div id="notices">
  155. <div>
  156. NOTICE:
  157. </div>
  158. <div class="notice">
  159. {% if(room.level.cycle.section.name=="Francophone") %}
  160. Chaque enseignant n'a droit qu'à un exemplaire de cette fiche de procès verbal
  161. {% else %}
  162. Each teacher is entitled to only one copy of this sheet of report
  163. {% endif %}
  164. </div>
  165. </div>
  166. </main>
  167. <footer></footer>
  168. </body>
  169. </html>