career_dashboard.tpl 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {% extends 'layout/layout_1_col.tpl'|get_template %}
  2. {% block content %}
  3. {{ form_filter }}
  4. {% for item in data %}
  5. <div id="career-{{ item.id }}" class="career panel panel-default">
  6. <div class="panel-heading">
  7. <h4>
  8. {% if _u.is_admin %}
  9. <a href="{{ _p.web }}main/admin/careers.php?action=edit&id={{ item.id }}">
  10. {{ item.name }}
  11. </a>
  12. {% else %}
  13. {{ item.name }}
  14. {% endif %}
  15. </h4>
  16. </div>
  17. <div class="panel-body">
  18. {{ item.description }}
  19. <table class="table promotions">
  20. <thead class="title">
  21. <th>{{ 'Promotions' | get_lang }}</th>
  22. <th>{{ 'StudyCycle' | get_lang }} </th>
  23. <th>{{ 'Courses' | get_lang }} </th>
  24. </thead>
  25. {% for promotions in item.career %}
  26. {% for prom in promotions %}
  27. {% set line = prom.sessions|length + 1 %}
  28. <tr>
  29. <td class="promo" rowspan="{{ line }}">
  30. <h4 id="promotion-id-{{ prom.id }}">
  31. <a title="{{ prom.name }}" href="{{ _p.web }}main/admin/promotions.php?action=edit&id={{ prom.id }}">
  32. {{ prom.name }}
  33. </a>
  34. </h4>
  35. </td>
  36. {% if line == 1 %}
  37. <td>&nbsp;</td><td>&nbsp;</td>
  38. {% endif %}
  39. </tr>
  40. {% for session in prom.sessions %}
  41. {% set sessionid = session.data.id %}
  42. <tr>
  43. <td class="cycles">
  44. <h4 id="session-id-{{ sessionid }}">
  45. <a title="{{ session.data.name }}" href="{{ _p.web }}main/session/resume_session.php?id_session={{ sessionid }}">
  46. {{ session.data.name }}
  47. </a>
  48. </h4>
  49. </td>
  50. <td class="courses">
  51. <ul>
  52. {% for course in session.courses %}
  53. <li>
  54. <a href="{{ _p.web }}courses/{{ course.directory }}/index.php?id_session={{ sessionid }}" title="{{ course.title }}">
  55. {{ course.title }}
  56. </a>
  57. </li>
  58. {% endfor %}
  59. </ul>
  60. </td>
  61. </tr>
  62. {% endfor %}
  63. {% endfor %}
  64. {% endfor %}
  65. </table>
  66. </div>
  67. </div>
  68. {% endfor %}
  69. {% endblock %}