123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- {% autoescape false %}
- {% 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">
- <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 class="text-center">{{ skill.short_code }}</td>
- <td width="500">{{ skill.description }}</td>
- <td class="text-right">
- <div class="btn-group btn-group-sm" role="group" aria-label="">
- <a href="{{ _p.web_main }}admin/skill_edit.php?id={{ skill.id }}" class="btn btn-light btn-sm" title="{{ "Edit" | get_lang }}">
- <i class="fas fa-pencil-alt"></i>
- </a>
- <a href="{{ _p.web_main }}admin/skill_create.php?parent={{ skill.id }}" class="btn btn-light btn-sm" title="{{ "CreateChildSkill" | get_lang }}">
- <i class="fas fa-plus"></i>
- </a>
- <a href="{{ _p.web_main }}admin/skill_badge_create.php?id={{ skill.id }}" class="btn btn-light btn-sm" title="{{ "CreateBadge" | get_lang }}">
- <i class="fas fa-shield-alt"></i>
- </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' }}">
- <i class="fas fa-check-circle"></i>
- </a>
- {% else %}
- <a href="{{ _p.web_self ~ '?' ~ {"action": "disable", "id": skill.id}|url_encode() }}" class="btn btn-danger btn-sm" title="{{ 'Disable' }}">
- <i class="fas fa-ban"></i>
- </a>
- {% endif %}
- </div>
- </td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- </div>
- <script>
- $(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>
- {% endautoescape %}
|