diff --git a/templates/youtube-dl_download.html b/templates/youtube-dl_download.html
index e1b94a7..a4bedf2 100644
--- a/templates/youtube-dl_download.html
+++ b/templates/youtube-dl_download.html
@@ -31,70 +31,70 @@
{% block content %}
-
- {{ macros.setting_input_text('url', 'URL', placeholder='http:// 주소', desc='유튜브, 네이버TV 등 동영상 주소') }}
- {{ macros.setting_input_text('filename', '파일명', value=arg['file_name'], desc='템플릿 규칙은 https://github.com/ytdl-org/youtube-dl/blob/master/README.md#output-template 참고') }}
- {{ macros.setting_select('preset', '동영상 포맷 프리셋', arg['preset_list'], col='3') }}
- {{ macros.setting_input_text('format', '동영상 포맷', desc=['포맷 지정은 https://github.com/ytdl-org/youtube-dl/blob/master/README.md#format-selection 참고', '빈칸으로 두면 최고 화질로 다운로드합니다.']) }}
- {{ setting_select2('postprocessor', '후처리', arg['postprocessor_list'], col='3', desc='다운로드 후 FFmpeg로 후처리합니다.') }}
- {{ macros.setting_button([['download_start', '다운로드']]) }}
-
+
+ {{ macros.setting_input_text('url', 'URL', placeholder='http:// 주소', desc='유튜브, 네이버TV 등 동영상 주소') }}
+ {{ macros.setting_input_text('filename', '파일명', value=arg['file_name'], desc='템플릿 규칙은 https://github.com/ytdl-org/youtube-dl/blob/master/README.md#output-template 참고') }}
+ {{ macros.setting_select('preset', '동영상 포맷 프리셋', arg['preset_list'], col='3') }}
+ {{ macros.setting_input_text('format', '동영상 포맷', desc=['포맷 지정은 https://github.com/ytdl-org/youtube-dl/blob/master/README.md#format-selection 참고', '빈칸으로 두면 최고 화질로 다운로드합니다.']) }}
+ {{ setting_select2('postprocessor', '후처리', arg['postprocessor_list'], col='3', desc='다운로드 후 FFmpeg로 후처리합니다.') }}
+ {{ macros.setting_button([['download_start', '다운로드']]) }}
+
-
+
{% endblock %}
diff --git a/templates/youtube-dl_list.html b/templates/youtube-dl_list.html
index 2c7d97b..d146c56 100644
--- a/templates/youtube-dl_list.html
+++ b/templates/youtube-dl_list.html
@@ -1,172 +1,164 @@
{% extends "base.html" %}
{% block content %}
-
- .table > tbody > tr.collapse > td {
- background-color: #009fff0d !important;
- }
+
+
+
+ | IDX |
+ Plugin |
+ 시작시간 |
+ 타입 |
+ 제목 |
+ 상태 |
+ 진행률 |
+ 진행시간 |
+ Action |
+
+
+
+
- .tableRowHover tbody tr:not(.tableRowHoverOff):hover td {
- background-color: #ffff0080 !important;
- }
-
+
+ function status_html(data) {
+ $(`#item_${data.index}`).html(get_item(data));
+ $(`#detail_${data.index}`).html(get_detail(data));
+ }
+
{% endblock %}
diff --git a/templates/youtube-dl_setting.html b/templates/youtube-dl_setting.html
index 2fd8008..5948333 100644
--- a/templates/youtube-dl_setting.html
+++ b/templates/youtube-dl_setting.html
@@ -1,52 +1,52 @@
{% extends "base.html" %}
{% block content %}
-
- {{ macros.setting_input_text('youtube_dl_version', 'youtube-dl 버전', value=arg['youtube_dl_version']) }}
-
-
+
+ {{ macros.setting_input_text('youtube_dl_version', 'youtube-dl 버전', value=arg['youtube_dl_version']) }}
+
+
-
+
{% endblock %}