diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-07-21 00:03:34 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-07-21 00:03:34 -0700 |
commit | 167483af21fb252622170c4b5e3ae3ce81f58733 (patch) | |
tree | ae63a0836e443fdad71ef5af86af8982116cb5d3 /youtube/templates/comments_page.html | |
parent | 8cad77ad0d7e0a0d07629087e2ee1709688cb58d (diff) | |
download | yt-local-167483af21fb252622170c4b5e3ae3ce81f58733.tar.lz yt-local-167483af21fb252622170c4b5e3ae3ce81f58733.tar.xz yt-local-167483af21fb252622170c4b5e3ae3ce81f58733.zip |
Convert login to flask framework and fix the login, and fix account display
Diffstat (limited to 'youtube/templates/comments_page.html')
-rw-r--r-- | youtube/templates/comments_page.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/templates/comments_page.html b/youtube/templates/comments_page.html index a77d2b4..302fcac 100644 --- a/youtube/templates/comments_page.html +++ b/youtube/templates/comments_page.html @@ -48,7 +48,7 @@ <label for="account-selection">Account:</label> <select id="account-selection" name="channel_id"> {% for account in accounts %} - <option value="{{ account['channel_id'] }}">{{ account['display_name'] }}</option> + <option value="{{ account[0] }}">{{ account[1] }}</option> {% endfor %} </select> <a href="/https://youtube.com/login" target="_blank">Add account</a> |