1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-12 08:04:05 +02:00

Admin: Adding functionality improvements

This commit is contained in:
Awilum
2018-04-22 15:41:17 +03:00
parent 7dfc89489b
commit 71d9a07379

View File

@@ -15,6 +15,15 @@
<label for="formGroupPageTitleInput">Page slug (url)</label>
<input type="text" name="slug" class="form-control" id="formGroupPageTitleInput" placeholder="">
</div>
<div class="form-group">
<label for="formGroupParentPageInput">Parent page</label>
<select class="form-control" id="formGroupParentPageInput" name="parent_page">
<option value="">/</option>
<?php foreach($pages_list as $page) { ?>
<option value="<?php echo $page['slug']; ?>"><?php echo $page['slug']; ?></option>
<?php } ?>
</select>
</div>
</div>
</div>
<br>