Oh, forgot about other posts in mindflow admin.
This commit is contained in:
parent
51b69e87cf
commit
67c6902217
@ -40,11 +40,13 @@ block content
|
||||
a(href=`#${post.PostID()}`)
|
||||
h3= post.Category.Name + ": " + post.Title
|
||||
form.edit
|
||||
select(name='category')
|
||||
option(value='' selected='') -- Change to category --
|
||||
option(value='1') Update
|
||||
option(value='2') Diary
|
||||
option(value='0') New category
|
||||
select(name='category' required='')
|
||||
each category in categories
|
||||
if (category.ID == 1)
|
||||
option(value=category.ID selected='') #{category.Name}
|
||||
else
|
||||
option(value=category.ID) #{category.Name}
|
||||
option(value='0') -- New category --
|
||||
input(type='text', placeholder='New category name' name='new-category')
|
||||
input(type='hidden', name='post-id' value=post.ID)
|
||||
input(type='hidden', name='old-category' value=post.Category.ID)
|
||||
|
Loading…
Reference in New Issue
Block a user