backend-dashboard-students-attempts.php
4 years ago
course-single-previous-attempts.php
3 years ago
frontend-dashboard-my-attempts.php
3 years ago
frontend-dashboard-students-attempts.php
3 years ago
frontend-dashboard-students-attempts.php
30 lines
| 1 | <?php if(!empty($back_url)): ?> |
| 2 | <div class="tutor-mb-24"> |
| 3 | <a class="tutor-btn tutor-btn-ghost" href="<?php echo esc_url( $back_url ); ?>"> |
| 4 | <span class="tutor-icon-previous tutor-mr-8" area-hidden="true"></span> |
| 5 | <?php _e('Back', 'tutor'); ?> |
| 6 | </a> |
| 7 | </div> |
| 8 | <?php endif; ?> |
| 9 | |
| 10 | <div class="tutor-fs-7 tutor-color-secondary"> |
| 11 | <?php _e('Course', 'tutor'); ?>: <?php echo $course_title; ?> |
| 12 | </div> |
| 13 | |
| 14 | <div class="header-title tutor-fs-5 tutor-fw-medium tutor-color-black tutor-mt-12 tutor-mb-20"> |
| 15 | <?php echo $quiz_title; ?> |
| 16 | </div> |
| 17 | |
| 18 | <div class="tutor-mb-32 tutor-fs-7 tutor-color-secondary"> |
| 19 | <div class="tutor-d-flex"> |
| 20 | <div class="tutor-mr-16"> |
| 21 | <?php _e('Student', 'tutor'); ?>: <span class="tutor-color-black"><strong><?php echo $student_name; ?></strong></span> |
| 22 | </div> |
| 23 | <div class="tutor-mr-16"> |
| 24 | <?php _e('Quiz Time', 'tutor'); ?>: <span class="tutor-color-black"><strong><?php echo $quiz_time; ?></strong></span> |
| 25 | </div> |
| 26 | <div> |
| 27 | <?php _e('Attempt Time', 'tutor'); ?>: <span class="tutor-color-black"><strong><?php echo $attempt_time; ?></strong></span> |
| 28 | </div> |
| 29 | </div> |
| 30 | </div> |