From 81667305df2bc148e4ca6247ad3b2d12b30e660c Mon Sep 17 00:00:00 2001 From: adityacp Date: Mon, 9 Mar 2020 17:10:10 +0530 Subject: Download course progress --- yaksh/templates/yaksh/course_progress.html | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'yaksh/templates') diff --git a/yaksh/templates/yaksh/course_progress.html b/yaksh/templates/yaksh/course_progress.html index a833c92..826f84b 100644 --- a/yaksh/templates/yaksh/course_progress.html +++ b/yaksh/templates/yaksh/course_progress.html @@ -4,10 +4,19 @@ {% if student_details %}

Course Progress

-
- Number Of Students: {{ students_no }} +
+
+
+ Number Of Students: {{ students_no }} +
+
+
{% include "yaksh/paginator.html" %} -- cgit From 8835afbc95c1a398cf62da7880596e7a302ae148 Mon Sep 17 00:00:00 2001 From: manojvaghela Date: Wed, 18 Mar 2020 16:36:52 +0530 Subject: Search bar added --- yaksh/templates/yaksh/courses.html | 28 +++++++++++++++++++++++++++- yaksh/templates/yaksh/lessons.html | 30 ++++++++++++++++++++++++++++-- yaksh/templates/yaksh/modules.html | 30 ++++++++++++++++++++++++++++-- yaksh/templates/yaksh/quizzes.html | 30 ++++++++++++++++++++++++++++-- 4 files changed, 111 insertions(+), 7 deletions(-) (limited to 'yaksh/templates') diff --git a/yaksh/templates/yaksh/courses.html b/yaksh/templates/yaksh/courses.html index 0eb9a38..cc4c69f 100644 --- a/yaksh/templates/yaksh/courses.html +++ b/yaksh/templates/yaksh/courses.html @@ -61,6 +61,32 @@ {% else %}
+ + {% csrf_token %} +
+
+

Search/Filter Courses

+
+
+
+
+ {{ form.search_tags }} +
+
+ {{ form.search_status }} +
+
+
+ + +
+
+ +
+

{{ courses_found }} Course(s) Available

+ {% if messages %} {% for message in messages %}
@@ -198,7 +224,7 @@
{% for course in courses %}
-
+
{{course.name}} diff --git a/yaksh/templates/yaksh/lessons.html b/yaksh/templates/yaksh/lessons.html index 0146a6b..c806d26 100644 --- a/yaksh/templates/yaksh/lessons.html +++ b/yaksh/templates/yaksh/lessons.html @@ -45,10 +45,36 @@ {% if not lessons %}

-

No new Lessons added

+

No lessons found

{% else %} -

Lessons

+
+
+ {% csrf_token %} +
+
+

Search/Filter Lessons

+
+
+
+
+ {{ form.search_tags }} +
+
+ {{ form.search_status }} +
+
+
+ + +
+
+ +
+

{{ lessons_found }} Lesson(s) Available

+
diff --git a/yaksh/templates/yaksh/modules.html b/yaksh/templates/yaksh/modules.html index 4fafbf1..610960c 100644 --- a/yaksh/templates/yaksh/modules.html +++ b/yaksh/templates/yaksh/modules.html @@ -46,10 +46,36 @@ {% if not modules %}

-

No new learning modules added

+

No learning modules found

{% else %} -

Learning Modules

+
+ + {% csrf_token %} +
+
+

Search/Filter Learning Modules

+
+
+
+
+ {{ form.search_tags }} +
+
+ {{ form.search_status }} +
+
+
+ + +
+
+ +
+

{{ modules_found }} Learning Module(s) Available

+
Sr.No
diff --git a/yaksh/templates/yaksh/quizzes.html b/yaksh/templates/yaksh/quizzes.html index 7e53d31..7532940 100644 --- a/yaksh/templates/yaksh/quizzes.html +++ b/yaksh/templates/yaksh/quizzes.html @@ -49,10 +49,36 @@ {% if not quizzes %}

-

No new Quiz added

+

No quizzes found

{% else %} -

Quizzes

+
+ + {% csrf_token %} +
+
+

Search/Filter Quizzes

+
+
+
+
+ {{ form.search_tags }} +
+
+ {{ form.search_status }} +
+
+
+ + +
+
+ +
+

{{ quizzes_found }} Quiz(zes) Available

+
Sr.No
-- cgit From d642d4906801df836ecefa92544786f07b08dc77 Mon Sep 17 00:00:00 2001 From: manojvaghela Date: Thu, 19 Mar 2020 14:51:02 +0530 Subject: button tag changed to attribute tag --- yaksh/templates/yaksh/courses.html | 4 ++-- yaksh/templates/yaksh/lessons.html | 4 ++-- yaksh/templates/yaksh/modules.html | 4 ++-- yaksh/templates/yaksh/quizzes.html | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) (limited to 'yaksh/templates') diff --git a/yaksh/templates/yaksh/courses.html b/yaksh/templates/yaksh/courses.html index cc4c69f..c890b86 100644 --- a/yaksh/templates/yaksh/courses.html +++ b/yaksh/templates/yaksh/courses.html @@ -78,9 +78,9 @@
- + diff --git a/yaksh/templates/yaksh/lessons.html b/yaksh/templates/yaksh/lessons.html index c806d26..d75e3e0 100644 --- a/yaksh/templates/yaksh/lessons.html +++ b/yaksh/templates/yaksh/lessons.html @@ -66,9 +66,9 @@
- + diff --git a/yaksh/templates/yaksh/modules.html b/yaksh/templates/yaksh/modules.html index 610960c..f98be9d 100644 --- a/yaksh/templates/yaksh/modules.html +++ b/yaksh/templates/yaksh/modules.html @@ -67,9 +67,9 @@
- + diff --git a/yaksh/templates/yaksh/quizzes.html b/yaksh/templates/yaksh/quizzes.html index 7532940..d374404 100644 --- a/yaksh/templates/yaksh/quizzes.html +++ b/yaksh/templates/yaksh/quizzes.html @@ -70,9 +70,9 @@
- + -- cgit
Sr.No