This commit is contained in:
TylerCG 2025-04-27 21:04:47 -04:00
parent a7a0eb915c
commit a71b8d1ef6
2 changed files with 3 additions and 3 deletions

View File

@ -26,10 +26,10 @@ def shows():
if 'Dimension 20' in item['SHOW']: if 'Dimension 20' in item['SHOW']:
if item['SHOW'] in accepted_D20: if item['SHOW'] in accepted_D20:
name = item['SHOW'] name = item['SHOW']
html += '<option value="' + name + '">' + name + '</option>' html += f'<option value="{name}">{name}</option>'
else: else:
name = item['SHOW'] name = item['SHOW']
html += '<option value="' + name + '">' + name + '</option>' html += f'<option value="{name}>{name}</option>'
return html return html
# api # api

View File

@ -45,7 +45,7 @@
<body> <body>
<form id="dropout_download"> <form id="dropout_download">
<select class="downloader" name="show" id="download_show"> <select class="downloader" name="show" id="download_show">
{{ shows }} {{ shows | tojson }}
</select> </select>
<input class="downloader" name="season" type="text" id="download_season" placeholder="Season"> <input class="downloader" name="season" type="text" id="download_season" placeholder="Season">
<!-- <input class="downloader" name="episode" type="text" id="download_episode" placeholder="Episode"><br> --> <!-- <input class="downloader" name="episode" type="text" id="download_episode" placeholder="Episode"><br> -->