81 lines
3.5 KiB
Smarty
81 lines
3.5 KiB
Smarty
{% if tags %}
|
|
<div class="row">
|
|
<div class="col-md-3" >
|
|
<select id="tag-filter" class="chzn-select form-control">
|
|
<option value="0">{{ 'PleaseSelectAChoice' | get_lang }}</option>
|
|
{% for tag in tags %}
|
|
<option value="{{ tag.id }}">{{ tag.tag }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<a id="filter-button" class="btn btn-default">{{ 'FilterByTags' | get_lang }}</a>
|
|
</div>
|
|
</div>
|
|
<br />
|
|
{% endif %}
|
|
<div class="table table-responsive">
|
|
<table class="table table-hover table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ "Badges" | get_lang }}</th>
|
|
<th>{{ "Name" | get_lang }}</th>
|
|
<th class="text-center">{{ "ShortCode" | get_lang }}</th>
|
|
<th class="text-center">{{ "Description" | get_lang }}</th>
|
|
<th class="text-center">{{ "Options" | get_lang }}</th>
|
|
</tr>
|
|
</thead>
|
|
<tfoot>
|
|
<tr>
|
|
<th>{{ "Badges" | get_lang }}</th>
|
|
<th>{{ "Name" | get_lang }}</th>
|
|
<th class="text-center">{{ "ShortCode" | get_lang }}</th>
|
|
<th class="text-center">{{ "Description" | get_lang }}</th>
|
|
<th class="text-center">{{ "Options" | get_lang }}</th>
|
|
</tr>
|
|
</tfoot>
|
|
<tbody>
|
|
{% for skill in skills %}
|
|
<tr>
|
|
<td width="50">
|
|
{{ skill.img_small }}
|
|
</td>
|
|
<td width="200">{{ skill.name }}</td>
|
|
<td>{{ skill.short_code }}</td>
|
|
<td width="500">{{ skill.description }}</td>
|
|
<td class="text-right">
|
|
<a href="{{ _p.web_main }}admin/skill_edit.php?id={{ skill.id }}" class="btn btn-default btn-sm" title="{{ "Edit" | get_lang }}">
|
|
<em class="fa fa-pencil fa-fw"></em>
|
|
</a>
|
|
<a href="{{ _p.web_main }}admin/skill_create.php?parent={{ skill.id }}" class="btn btn-primary btn-sm" title="{{ "CreateChildSkill" | get_lang }}">
|
|
<em class="fa fa-plus fa-fw"></em>
|
|
</a>
|
|
<a href="{{ _p.web_main }}admin/skill_badge_create.php?id={{ skill.id }}" class="btn btn-primary btn-sm" title="{{ "CreateBadge" | get_lang }}">
|
|
<em class="fa fa-shield fa-fw"></em>
|
|
</a>
|
|
{% if skill.status == 0 %}
|
|
<a href="{{ _p.web_self ~ '?' ~ {"action": "enable", "id": skill.id}|url_encode() }}" class="btn btn-success btn-sm" title="{{ 'Enable' }}">
|
|
<em class="fa fa-check-circle-o fa-fw"></em>
|
|
</a>
|
|
{% else %}
|
|
<a href="{{ _p.web_self ~ '?' ~ {"action": "disable", "id": skill.id}|url_encode() }}" class="btn btn-danger btn-sm" title="{{ 'Disable' }}">
|
|
<em class="fa fa-ban fa-fw"></em>
|
|
</a>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<script>
|
|
$(document).ready(function() {
|
|
$("#tag-filter").val("{{ current_tag_id }}");
|
|
$("#filter-button").click(function() {
|
|
var tagId = $( "#tag-filter option:selected" ).val();
|
|
$(location).attr('href', '{{ _p.web_main }}admin/skill_list.php?tag_id='+tagId);
|
|
});
|
|
});
|
|
</script>
|