|
@@ -1,20 +1,23 @@
|
|
|
<legend>
|
|
|
<h1>{{ "ManageSkills" | get_lang }}</h1>
|
|
|
</legend>
|
|
|
-<div class="row">
|
|
|
- <div class="col-md-3" >
|
|
|
- <select id="tag-filter" class="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>
|
|
|
+
|
|
|
+{% if tags %}
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-md-3" >
|
|
|
+ <select id="tag-filter" class="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>
|
|
|
-</div>
|
|
|
-<br />
|
|
|
+ <br />
|
|
|
+{% endif %}
|
|
|
<div class="table table-responsive">
|
|
|
<table class="table table-hover table-striped">
|
|
|
<thead>
|