2024-01-04 02:53:13 +00:00
< h1 > Change show metadata< / h1 >
2024-10-27 13:03:52 +00:00
< form action = "./edit?csrf={{csrf}}" method = "post" enctype = "application/x-www-form-urlencoded" >
2024-01-04 02:53:13 +00:00
< div class = "mb-3" >
< label for = "proper-name" class = "form-label" > Proper Name< / label >
< input type = "text" class = "form-control" id = "proper-name" name = "proper_name" value = "{{propername}}" >
< / div >
< div class = "mb-3" >
< label for = "exampleFormControlTextarea1" class = "form-label" > Description< / label >
< textarea name = "description" class = "form-control" id = "exampleFormControlTextarea1" rows = "5" > {{description}}< / textarea >
< / div >
< input type = "submit" value = "Change Metadata" class = "btn btn-primary" >
< / form >
< br >
< h1 > Add season< / h1 >
2024-10-27 13:03:52 +00:00
< form action = "./addseason?csrf={{csrf2}}" method = "post" enctype = "application/x-www-form-urlencoded" >
2024-01-04 02:53:13 +00:00
< div class = "mb-3" >
< label for = "number" class = "form-label" > Season Number< / label >
< input type = "number" min = "1" class = "form-control" id = "number" name = "number" value = "{{newseasonnumber}}" >
< / div >
< div class = "mb-3" >
< label for = "proper-name2" class = "form-label" > Proper Name< / label >
< input type = "text" class = "form-control" id = "proper-name2" name = "proper_name" value = "" >
< / div >
< div class = "mb-3" >
< label for = "exampleFormControlTextarea2" class = "form-label" > Description< / label >
< textarea name = "description" class = "form-control" id = "exampleFormControlTextarea2" rows = "5" > < / textarea >
< / div >
< input type = "submit" value = "Add Season" class = "btn btn-primary" >
< / form >
< br >
< h1 > Upload asset files< / h1 >
2024-10-27 13:03:52 +00:00
< form action = "./upload?csrf={{csrf3}}" method = "post" enctype = "multipart/form-data" >
2024-01-04 02:53:13 +00:00
< h1 > You should do these in order (not required but recomended because you can only upload one at a time, that is in one tab at least)< / h1 >
< select class = "form-select" name = "type" aria-label = "Select resource" >
< option value = "thumbnail" selected > Thumbnail (should be 120x214, the coverart for the show (also used for when season or episode does not have one))< / option >
< option value = "poster" > Poster (same resoultion as show (for when season or episode does not have one), what you see on video player before pressing play)< / option >
< / select >
< div class = "mb-3" >
< label for = "formFileSm" class = "form-label" > File to upload< / label >
< input class = "form-control form-control-sm" id = "formFileSm" name = "file" type = "file" >
< / div >
< input type = "submit" value = "Submit" class = "btn btn-primary" >
< / form >
< br >
< a href = "./extras/" target = "_blank" class = "btn btn-primary" > View/Edit extras< / a >