From ec55273fcc0c374dbaf213910f760660fb1419a6 Mon Sep 17 00:00:00 2001 From: CruiseDevice Date: Fri, 31 May 2019 18:46:03 +0530 Subject: Add templates and more features --- yaksh/views.py | 1 + 1 file changed, 1 insertion(+) (limited to 'yaksh/views.py') diff --git a/yaksh/views.py b/yaksh/views.py index f1ab13b..0b70361 100644 --- a/yaksh/views.py +++ b/yaksh/views.py @@ -2953,3 +2953,4 @@ def download_course(request, course_id): ) response.write(zip_file.read()) return response + # return HttpResponse("Success") \ No newline at end of file -- cgit From 22b7131f930bcb43f0f0fec238260c63ff3fd39a Mon Sep 17 00:00:00 2001 From: CruiseDevice Date: Fri, 7 Jun 2019 16:55:08 +0530 Subject: Improve UI in offline Yaksh --- yaksh/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'yaksh/views.py') diff --git a/yaksh/views.py b/yaksh/views.py index 0b70361..319acde 100644 --- a/yaksh/views.py +++ b/yaksh/views.py @@ -2943,7 +2943,8 @@ def download_course(request, course_id): static_files = {"js": ["bootstrap.min.js", "jquery-3.3.1.min.js", "video.js"], "css": ["bootstrap.min.css", - "video-js.css", "offline.css"], + "video-js.css", "offline.css", + "yakshcustom.css"], "images": ["yaksh_banner.png"]} zip_file = course.create_zip(current_dir, static_files) zip_file.seek(0) -- cgit From 745426ecc20bba58fd3721a960057ad8d41e3b99 Mon Sep 17 00:00:00 2001 From: CruiseDevice Date: Wed, 3 Jul 2019 17:31:38 +0530 Subject: Minor changes - Remove commented code. - Add active class to the tab selected on sidebar. --- yaksh/views.py | 1 - 1 file changed, 1 deletion(-) (limited to 'yaksh/views.py') diff --git a/yaksh/views.py b/yaksh/views.py index 319acde..5f0c41c 100644 --- a/yaksh/views.py +++ b/yaksh/views.py @@ -2954,4 +2954,3 @@ def download_course(request, course_id): ) response.write(zip_file.read()) return response - # return HttpResponse("Success") \ No newline at end of file -- cgit