diff options
Diffstat (limited to 'youtube/templates')
-rw-r--r-- | youtube/templates/watch.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/youtube/templates/watch.html b/youtube/templates/watch.html index 04f963d..4041144 100644 --- a/youtube/templates/watch.html +++ b/youtube/templates/watch.html @@ -381,6 +381,16 @@ Reload without invidious (for usage of new identity button).</a> </a> </li> {% endfor %} + {% for download in other_downloads %} + <li class="download-format"> + <a href="{{ download['url'] }}"> + <ol class="format-attributes"> + <li class="format-ext">{{ download['ext'] }}</li> + <li class="format-label">{{ download['label'] }}</li> + </ol> + </a> + </li> + {% endfor %} </ul> </details> <input class="checkbox" name="video_info_list" value="{{ video_info }}" form="playlist-edit" type="checkbox"> |