student_boss_report.tpl 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {% if allow_skill_tool %}
  2. <div class="btn-group">
  3. <a class="btn btn-default" href="{{ _p.web_main }}social/skills_wheel.php">
  4. {{ 'SkillsWheel' | get_lang }}
  5. </a>
  6. </div>
  7. {% endif %}
  8. <h1 class="page-header">{{ 'SkillsAcquired' | get_lang }}</h1>
  9. {{ form }}
  10. {% if rows %}
  11. <div class="table-responsive">
  12. <table class="table table-hover">
  13. <thead>
  14. <tr>
  15. <th>{{ 'Student' | get_lang }}</th>
  16. <th>{{ 'SkillsAcquired' | get_lang }}</th>
  17. <th>{{ 'Date' | get_lang }}</th>
  18. <th>{{ 'Course' | get_lang }}</th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. {% for row in rows %}
  23. <tr>
  24. <td>{{ row.complete_name }}</td>
  25. <td>{{ row.skill_name }}</td>
  26. <td>{{ row.achieved_at }}</td>
  27. <td>
  28. {% if not row.course_name is empty %}
  29. <img src="{{ row.course_image }}" alt="{{ row.course_name }}"> {{ row.course_name }}
  30. {% endif %}
  31. </td>
  32. </tr>
  33. {% endfor %}
  34. </tbody>
  35. </table>
  36. </div>
  37. {% endif %}