backend-dashboard-students-attempts.php
3 years ago
course-single-previous-attempts.php
1 year ago
frontend-dashboard-my-attempts.php
1 year ago
frontend-dashboard-students-attempts.php
1 year ago
backend-dashboard-students-attempts.php
31 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Student attempt page |
| 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 | return; |
| 13 | } |
| 14 | ?> |
| 15 | |
| 16 | <header class="tutor-wp-dashboard-header tutor-justify-between tutor-align-center tutor-px-32 tutor-py-20 tutor-mb-24 tutor-pt-16 tutor-pb-16"> |
| 17 | <div class="tutor-mb-24"> |
| 18 | <a class="tutor-btn tutor-btn-ghost" href="<?php echo esc_url( $back_url ); ?>"> |
| 19 | <span class="tutor-icon-previous" area-hidden="true"></span> |
| 20 | <?php esc_html_e( 'Back', 'tutor' ); ?> |
| 21 | </a> |
| 22 | </div> |
| 23 | |
| 24 | <div class="tutor-fs-7 tutor-color-secondary"> |
| 25 | <?php echo esc_html__( 'Course', 'tutor' ) . ': ' . esc_html( $course_title ); ?> |
| 26 | </div> |
| 27 | <div class="header-title tutor-fs-5 tutor-fw-medium tutor-color-black tutor-mt-12"> |
| 28 | <?php echo esc_html__( 'Quiz', 'tutor' ) . ': ' . esc_html( $quiz_title ); ?> |
| 29 | </div> |
| 30 | </header> |
| 31 |