+
-
+
-
-
Requests
- {% if course.get_requests %}
-
Select all
-
- {% endif %}
-
-
-
-
Rejected
- {% if course.get_rejected %}
-
Select all
-
- {% for rejected in course.get_rejected %}
-
- {% endif %}
-
-
+
+
Requests
+{% if course.get_requests %}
+
Select all
+
+
+ |
+ Full Name |
+ Email |
+ Roll Number |
+ Institute |
+ Department |
+ Enroll/Reject |
+
+
+
+{% endif %}
+
-
-
-
Enrolled
- {% if course.get_enrolled %}
-
Select all
-
- {% for enrolled in course.get_enrolled %}
-
- {% endif %}
-
-
+
+
Enrolled
+{% if course.get_enrolled %}
+
Select all
+
+
+ |
+ Full Name |
+ Email |
+ Roll Number |
+ Institute |
+ Department |
+ Reject |
+ {% for enrolled in course.get_enrolled %}
+
+
+
+{% endif %}
+
+
+
+
+
Rejected
+{% if course.get_rejected %}
+
Select all
+
+
+ |
+ Full Name |
+ Email |
+ Roll Number |
+ Institute |
+ Department |
+ Enroll |
+{% for rejected in course.get_rejected %}
+
+
+
+
+{% endif %}
+
+
+
+
-
{% endblock %}
--
cgit
From 33fda6a4cf8bacabddaba26b448dfeeafe8519f4 Mon Sep 17 00:00:00 2001
From: aditya palaparthy
Date: Thu, 16 Feb 2017 12:40:44 +0530
Subject: Modify students information table
---
yaksh/templates/yaksh/addteacher.html | 7 +------
yaksh/templates/yaksh/course_detail.html | 11 +++--------
2 files changed, 4 insertions(+), 14 deletions(-)
diff --git a/yaksh/templates/yaksh/addteacher.html b/yaksh/templates/yaksh/addteacher.html
index 86f5806..478da77 100644
--- a/yaksh/templates/yaksh/addteacher.html
+++ b/yaksh/templates/yaksh/addteacher.html
@@ -5,11 +5,6 @@
{% block css %}
-
{% endblock %}
{% block content %}
@@ -32,7 +27,7 @@ table, th, td{
{% else %}
Search Results
Search results does not include teachers already added
-
+
|
Username |
First Name |
diff --git a/yaksh/templates/yaksh/course_detail.html b/yaksh/templates/yaksh/course_detail.html
index 0cccb60..94b19a9 100644
--- a/yaksh/templates/yaksh/course_detail.html
+++ b/yaksh/templates/yaksh/course_detail.html
@@ -7,11 +7,6 @@
{% block script %}
{% endblock %}
-{% block css %}
-
-{% endblock %}
{% block content %}
@@ -33,7 +28,7 @@ table, th, td { border: 1px solid black;}
{% if course.get_requests %}
Select all
-
+
|
Full Name |
Email |
@@ -67,7 +62,7 @@ table, th, td { border: 1px solid black;}
{% if course.get_enrolled %}
Select all
-
+
|
Full Name |
Email |
@@ -101,7 +96,7 @@ table, th, td { border: 1px solid black;}
{% if course.get_rejected %}
Select all
-
+
|
Full Name |
Email |
--
cgit
From 304d1606a72f1bb0ec3197e2fb102817dde3881e Mon Sep 17 00:00:00 2001
From: adityacp
Date: Thu, 16 Feb 2017 18:16:45 +0530
Subject: Wrap lines to 80 cols with proper indentation
---
yaksh/templates/yaksh/course_detail.html | 229 ++++++++++++++++---------------
1 file changed, 120 insertions(+), 109 deletions(-)
diff --git a/yaksh/templates/yaksh/course_detail.html b/yaksh/templates/yaksh/course_detail.html
index 94b19a9..dc85080 100644
--- a/yaksh/templates/yaksh/course_detail.html
+++ b/yaksh/templates/yaksh/course_detail.html
@@ -17,117 +17,128 @@
Enrolled Students
Rejected Students
- {% if course.active %}Deactivate Course {% else %} Activate Course {% endif %}
+
+ {% if course.active %}Deactivate Course {% else %} Activate Course {% endif %}
+
-
-
-
-
Requests
-{% if course.get_requests %}
-
Select all
-
-
- |
- Full Name |
- Email |
- Roll Number |
- Institute |
- Department |
- Enroll/Reject |
-
-
-
-{% endif %}
-
-
-
-
-
Enrolled
-{% if course.get_enrolled %}
-
Select all
-
-
- |
- Full Name |
- Email |
- Roll Number |
- Institute |
- Department |
- Reject |
- {% for enrolled in course.get_enrolled %}
-
-
-
-{% endif %}
-
-
-
-
-
Rejected
-{% if course.get_rejected %}
-
Select all
-
-
- |
- Full Name |
- Email |
- Roll Number |
- Institute |
- Department |
- Enroll |
-{% for rejected in course.get_rejected %}
-
-
-
-
-{% endif %}
-
-
-
-
+
+
+
+
Requests
+ {% if course.get_requests %}
+
Select all
+
+
+ |
+ Full Name |
+ Email |
+ Roll Number |
+ Institute |
+ Department |
+ Enroll/Reject |
+
+
+
+ {% endif %}
+
+
+
+
+
Enrolled
+ {% if course.get_enrolled %}
+
Select all
+
+
+ |
+ Full Name |
+ Email |
+ Roll Number |
+ Institute |
+ Department |
+ Reject |
+ {% for enrolled in course.get_enrolled %}
+
+
+
+ {% endif %}
+
+
+
+
+
Rejected
+ {% if course.get_rejected %}
+
Select all
+
+
+ |
+ Full Name |
+ Email |
+ Roll Number |
+ Institute |
+ Department |
+ Enroll |
+ {% for rejected in course.get_rejected %}
+
+
+
+
+ {% endif %}
+
+
+
{% endblock %}
--
cgit