student_report.tpl 992 B

1234567891011121314151617181920212223242526272829303132
  1. {% if allowSkillsTool %}
  2. <div class="btn-group">
  3. <a class="btn btn-default" href="{{ _p.web_main }}social/skills_wheel.php">{{ 'SkillsWheel' | get_lang }}</a>
  4. </div>
  5. {% endif %}
  6. <h1 class="page-header">{{ 'SkillsAcquired' | get_lang }}</h1>
  7. {% if rows %}
  8. <table class="table">
  9. <thead>
  10. <tr>
  11. <th>{{ 'Skill' | get_lang }}</th>
  12. <th>{{ 'Date' | get_lang }}</th>
  13. <th>{{ 'Course' | get_lang }}</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. {% for row in rows %}
  18. <tr>
  19. <td>{{ row.skillName }}</td>
  20. <td>{{ row.achievedAt }}</td>
  21. <td><img src="{{ row.courseImage }}" alt="{{ row.courseName }}" width="32"> {{ row.courseName }}</td>
  22. </tr>
  23. {% endfor %}
  24. </tbody>
  25. </table>
  26. {% else %}
  27. <div class="alert alert-info">
  28. {{ 'NoResults' | get_lang }}
  29. </div>
  30. {% endif %}