1
0
Fork 0

Oh, forgot about other posts in mindflow admin.

This commit is contained in:
Alexander Andreev 2023-05-22 23:16:56 +04:00
parent 51b69e87cf
commit 67c6902217
Signed by: Arav
GPG Key ID: D22A817D95815393
1 changed files with 7 additions and 5 deletions

View File

@ -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)