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 item['SHOW'] in accepted_D20:
name = item['SHOW']
html += '<option value="' + name + '">' + name + '</option>'
html += f'<option value="{name}">{name}</option>'
else:
name = item['SHOW']
html += '<option value="' + name + '">' + name + '</option>'
html += f'<option value="{name}>{name}</option>'
return html
# api

View File

@ -45,7 +45,7 @@
<body>
<form id="dropout_download">
<select class="downloader" name="show" id="download_show">
{{ shows }}
{{ shows | tojson }}
</select>
<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> -->