accessibility-settings.html
1 year ago
color-picker.html
1 year ago
color-picker.scss
1 year ago
css-settings.html
1 year ago
display-settings.html
1 year ago
display-settings.scss
1 year ago
filter-settings.html
1 year ago
font-awesome-button-settings.html
1 year ago
font-awesome-button-settings.scss
1 year ago
help-icon.html
1 year ago
help-icon.scss
1 year ago
image-button-settings.html
1 year ago
image-button-settings.scss
1 year ago
index.php
1 year ago
location-settings.html
1 year ago
posts-filter-selection.html
1 year ago
posts-filter-selection.scss
1 year ago
text-button-settings.html
1 year ago
filter-settings.html
28 lines
| 1 | <table class="form-table" role="presentation"> |
| 2 | <tbody> |
| 3 | <tr> |
| 4 | <th scope="row">{{ labels.display_pages }}</th> |
| 5 | <td> |
| 6 | <div> |
| 7 | <label> |
| 8 | <input type="radio" name="display_pages" id="display_pages_1" :value="1" v-model="data.display_pages" />{{ filter_options['1'] }} |
| 9 | </label> |
| 10 | </div> |
| 11 | <div> |
| 12 | <label> |
| 13 | <input type="radio" name="display_pages" id="display_pages_2" :value="2" v-model="data.display_pages" />{{ filter_options['2'] }} |
| 14 | <help-icon :help-text="help.include_in_pages"></help-icon> |
| 15 | </label> |
| 16 | <posts-filter-selection v-if="data.display_pages === 2" v-model="data.include_pages" :posts-list="filter_posts_list"></posts-filter-selection> |
| 17 | </div> |
| 18 | <div> |
| 19 | <label> |
| 20 | <input type="radio" name="display_pages" id="display_pages_3" :value="3" v-model="data.display_pages" />{{ filter_options['3'] }} |
| 21 | <help-icon :help-text="help.exclude_in_pages"></help-icon> |
| 22 | </label> |
| 23 | <posts-filter-selection v-if="data.display_pages === 3" v-model="data.exclude_pages" :posts-list="filter_posts_list"></posts-filter-selection> |
| 24 | </div> |
| 25 | </td> |
| 26 | </tr> |
| 27 | </tbody> |
| 28 | </table> |