diff options
author | ankitjavalkar | 2019-01-16 14:54:16 +0530 |
---|---|---|
committer | ankitjavalkar | 2019-01-16 14:54:21 +0530 |
commit | e03a744499d5c2ac4f8414ac06a1e5437c05fc16 (patch) | |
tree | 02be151f4965d709e0179fb91c627ed5f30deebf | |
parent | ef7d0f3b8b2cb46bb04d90d0f3f05aab8b1a33dc (diff) | |
download | online_test-e03a744499d5c2ac4f8414ac06a1e5437c05fc16.tar.gz online_test-e03a744499d5c2ac4f8414ac06a1e5437c05fc16.tar.bz2 online_test-e03a744499d5c2ac4f8414ac06a1e5437c05fc16.zip |
Add roll number columns and fix UI
-rw-r--r-- | yaksh/templates/yaksh/course_detail.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/yaksh/templates/yaksh/course_detail.html b/yaksh/templates/yaksh/course_detail.html index 54af854..a0a6ed2 100644 --- a/yaksh/templates/yaksh/course_detail.html +++ b/yaksh/templates/yaksh/course_detail.html @@ -141,6 +141,7 @@ <thead> <tr class="yakshlight"> <th>Sr No.</th> + <th>Roll No.</th> <th>Email</th> <th>Current Unit</th> <th>Course Completion Percentage</th> @@ -153,6 +154,9 @@ <td width="5%"> {{forloop.counter}}. </td> + <td> + {{ student.profile.roll_number}} + </td> <td width="50%"> <a class="user_data" data-item-id="{{course.id}}+{{student.id}}" data-toggle="tooltip" title="Click to view Overall Course progress" data-placement="top"> {% if student.email %} @@ -160,6 +164,7 @@ {% else %} {{ student.get_full_name|title}} {% endif %} + <i class="fa fa-caret-down"></i> </a> <div id="show_status_{{course.id}}_{{student.id}}" style="display: None;"> </div> |