pdf_export_student.tpl 944 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <div style="position: absolute; top: 30px; right: 50px;">
  2. <img src="{{ _p.web_css_theme }}images/header-logo.png" width="200">
  3. </div>
  4. {% if title %}
  5. <h1 style="color:#000000; background-color:#fff;font-size: 22px; text-align: center; font-weight: bold; padding: 5px 10px;">
  6. {{ title }}
  7. </h1>
  8. {% endif %}
  9. {% if session_title %}
  10. <h1 style="color:#ffffff; background-color:#084B8A;font-size: 22px; text-align: center; font-weight: bold; padding: 5px 10px;">
  11. {{ session_title }}
  12. </h1>
  13. {% endif %}
  14. {% if student %}
  15. <div style="font-weight: bold; padding-bottom: 20px;">
  16. {{ student }}
  17. </div>
  18. {% endif %}
  19. {% if table_progress %}
  20. <div style="background: #f1f6ff;">
  21. {{ table_progress }}
  22. </div>
  23. {% endif %}
  24. {% if subtitle %}
  25. <div style="padding-bottom: 20px; margin-top: 20px;">
  26. {{ subtitle }}
  27. </div>
  28. {% endif %}
  29. {% if table_course %}
  30. <div style="background: #f1f6ff;">
  31. {{ table_course }}
  32. </div>
  33. {% endif %}