diff options
Diffstat (limited to 'yaksh')
-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> |