backend-dashboard-students-attempts.php
3 months ago
course-single-previous-attempts.php
6 days ago
frontend-dashboard-my-attempts.php
3 months ago
frontend-dashboard-students-attempts.php
3 months ago
frontend-dashboard-students-attempts.php
41 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Student attempt page frontend |
| 4 | * |
| 5 | * @package Tutor\Views |
| 6 | * @author Themeum <support@themeum.com> |
| 7 | * @link https://themeum.com |
| 8 | * @since 2.0.0 |
| 9 | */ |
| 10 | |
| 11 | if ( ! empty( $back_url ) ) : ?> |
| 12 | <div class="tutor-mb-24"> |
| 13 | <a class="tutor-btn tutor-btn-ghost" href="<?php echo esc_url( $back_url ); ?>"> |
| 14 | <span class="tutor-icon-previous tutor-mr-8" aria-hidden="true"></span> |
| 15 | <?php esc_html_e( 'Back', 'tutor' ); ?> |
| 16 | </a> |
| 17 | </div> |
| 18 | <?php endif; ?> |
| 19 | |
| 20 | <div class="tutor-fs-7 tutor-color-secondary"> |
| 21 | <?php esc_html_e( 'Course', 'tutor' ); ?>: <?php echo esc_html( $course_title ); ?> |
| 22 | </div> |
| 23 | |
| 24 | <div class="header-title tutor-fs-5 tutor-fw-medium tutor-color-black tutor-mt-12 tutor-mb-20"> |
| 25 | <?php echo esc_html( $quiz_title ); ?> |
| 26 | </div> |
| 27 | |
| 28 | <div class="tutor-mb-32 tutor-fs-7 tutor-color-secondary"> |
| 29 | <div class="tutor-d-flex tutor-flex-column tutor-flex-sm-row tutor-gap-1 tutor-gap-sm-2"> |
| 30 | <div> |
| 31 | <?php esc_html_e( 'Student', 'tutor' ); ?>: <span class="tutor-color-black"><strong><?php echo esc_html( $student_name ); ?></strong></span> |
| 32 | </div> |
| 33 | <div> |
| 34 | <?php esc_html_e( 'Quiz Time', 'tutor' ); ?>: <span class="tutor-color-black"><strong><?php echo esc_html( $quiz_time ); ?></strong></span> |
| 35 | </div> |
| 36 | <div> |
| 37 | <?php esc_html_e( 'Attempt Time', 'tutor' ); ?>: <span class="tutor-color-black"><strong><?php echo esc_html( $attempt_time ); ?></strong></span> |
| 38 | </div> |
| 39 | </div> |
| 40 | </div> |
| 41 |