Lines 11-17
Link Here
|
11 |
{{ $__("Content type") }}: |
11 |
{{ $__("Content type") }}: |
12 |
<select id="content_type_filter" v-model="filters.content_type"> |
12 |
<select id="content_type_filter" v-model="filters.content_type"> |
13 |
<option value="">{{ $__("All") }}</option> |
13 |
<option value="">{{ $__("All") }}</option> |
14 |
<option :key="type.authorised_values" :value="type.value"> |
14 |
<option |
|
|
15 |
v-for="type in authorisedValues.av_package_content_types" |
16 |
:key="type.value" |
17 |
:value="type.value" |
18 |
> |
15 |
{{ type.description }} |
19 |
{{ type.description }} |
16 |
</option> |
20 |
</option> |
17 |
</select> |
21 |
</select> |
18 |
- |
|
|