mirror of
https://github.com/karl0ss/JDRssDownloader.git
synced 2025-04-27 20:03:40 +01:00
20 lines
572 B
Plaintext
20 lines
572 B
Plaintext
|
extends layout
|
||
|
|
||
|
block layout-content
|
||
|
div.View
|
||
|
h1.Banner Edit Show
|
||
|
div.Message
|
||
|
form(action="/editShow" method="POST")
|
||
|
p Show Name:
|
||
|
select(name="showName")
|
||
|
each show in showList
|
||
|
option(value=show.Name) #{show.Name}
|
||
|
p Quality:
|
||
|
select(name="quality")
|
||
|
option(value='720') #{'720p'}
|
||
|
option(value='1080') #{'1080p'}
|
||
|
option(value='2160') #{'2160p'}
|
||
|
input(type="submit", value="Edit Show")
|
||
|
div.NavButtons
|
||
|
a(href="/")
|
||
|
div.NavButton Home
|