You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
3.4 KiB
80 lines
3.4 KiB
{% if allowSkillsTool %}
|
|
<div class="btn-group">
|
|
<a class="btn btn-default" href="{{ _p.web_main }}social/skills_wheel.php">{{ 'SkillsWheel' | get_lang }}</a>
|
|
{% if allowDrhSkillsManagement %}
|
|
<a class="btn btn-default" href="{{ _p.web_main }}admin/skills_wheel.php">{{ 'ManageSkills' | get_lang }}</a>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<h1 class="page-header">{{ 'Skills' | get_lang }}</h1>
|
|
|
|
<div class="row">
|
|
<div class="span6">
|
|
<form class="form-inline" method="post" action="{{ _p.web_self }}">
|
|
<label for="course">{{ 'Courses' | get_lang }}</label>
|
|
<select name="course" id="course">
|
|
<option value="0">{{ 'Select' | get_lang }}</option>
|
|
{% for course in courses %}
|
|
<option value="{{ course.id }}" {{ (course.id == selectedCourse) ? 'selected' : '' }}>{{ course.title }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
<button type="submit" class="btn btn-default">{{ 'Filter' | get_lang }}</button>
|
|
</form>
|
|
</div>
|
|
<div class="span6">
|
|
<form class="form-inline" method="post" action="{{ _p.web_self }}">
|
|
<label for="skill">{{ 'Skills' | get_lang }}</label>
|
|
<select name="skill" id="skill">
|
|
<option value="0">{{ 'Select' | get_lang }}</option>
|
|
{% for skill in skills %}
|
|
<option value="{{ skill.id }}" {{ (skill.id == selectedSkill) ? 'selected' : '' }}>{{ skill.name }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
<button type="submit" class="btn btn-default"><i class="fa fa-filter"></i>{{ 'Filter' | get_lang }}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<h2 class="page-header">{{ reportTitle }} <small>{{ reportSubTitle }}</small></h2>
|
|
|
|
{% if rows %}
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
{% if action == 'filterByCourse' %}
|
|
<th>{{ 'Course' | get_lang }}</th>
|
|
<th>{{ 'Skill' | get_lang }}</th>
|
|
<th>{{ 'Student' | get_lang }}</th>
|
|
<th>{{ 'Date' | get_lang }}</th>
|
|
{% elseif action == 'filterBySkill' %}
|
|
<th>{{ 'Skill' | get_lang }}</th>
|
|
<th>{{ 'Student' | get_lang }}</th>
|
|
<th>{{ 'Date' | get_lang }}</th>
|
|
<th>{{ 'Course' | get_lang }}</th>
|
|
{% endif %}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for row in rows %}
|
|
<tr>
|
|
{% if action == 'filterByCourse' %}
|
|
<td><img src="{{ row.courseImage }}" alt="{{ row.c_name }}"> {{ row.c_name }}</td>
|
|
<td>{{ row.skill_name }}</td>
|
|
<td>{{ row.completeName }}</td>
|
|
<td>{{ row.achievedAt }}</td>
|
|
{% elseif action == 'filterBySkill' %}
|
|
<td>{{ row.skill_name }}</td>
|
|
<td>{{ row.completeName }}</td>
|
|
<td>{{ row.achievedAt }}</td>
|
|
<td><img src="{{ row.courseImage }}" alt="{{ row.c_name }}"> {{ row.c_name }}</td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% else %}
|
|
<div class="alert alert-info">
|
|
{{ 'NoResults' | get_lang }}
|
|
</div>
|
|
{% endif %}
|
|
|