|
1 | 1 | {% extends "platform/base.html" %} |
2 | 2 | {% load django_vite %} |
3 | | -{% load i18n %} |
4 | | -{%block extra_context %} |
5 | | - "course_title": "{{ course.title|escapejs }}", |
6 | | - "course_id": "{{ course.id }}", |
7 | | -{% endblock %} |
8 | | -{% block extra_locale_messages %} |
9 | | - "actions": "{% translate 'Actions' %}", |
10 | | - "published": "{% translate 'Published' %}", |
11 | | - "type": "{% translate 'Type' %}", |
12 | | - "waiting_time": "{% translate 'Waiting Time' %}", |
13 | | - "title": "{% translate 'Title' %}", |
14 | | - "add_quiz": "{% translate 'Add Quiz' %}", |
15 | | - "add_lesson": "{% translate 'Add Lesson' %}", |
16 | | - "lesson": "{% translate 'Lesson' %}", |
17 | | - "quiz": "{% translate 'Quiz' %}", |
18 | | - "add": "{% translate 'Add' %}", |
19 | | - "new_lesson": "{% translate 'New Lesson' %}", |
20 | | - "update_lesson": "{% translate 'Update Lesson' %}", |
21 | | - "new_quiz": "{% translate 'New Quiz' %}", |
22 | | - "update_quiz": "{% translate 'Update Quiz' %}", |
23 | | - "lesson_title": "{% translate 'Lesson Title' %}", |
24 | | - "lesson_waiting_tooltip": "{% translate 'Set the amount of time that we should wait after the previous lesson or quiz submission before sending this lesson' %}", |
25 | | - "days": "{% translate 'Days' %}", |
26 | | - "hours": "{% translate 'Hours' %}", |
27 | | - "back": "{% translate 'Back' %}", |
28 | | - "cancel": "{% translate 'Cancel' %}", |
29 | | - "delete": "{% translate 'Delete' %}", |
30 | | - "save_lesson": "{% translate 'Save Lesson' %}", |
31 | | - "save_quiz": "{% translate 'Save Quiz' %}", |
32 | | - "quiz_title": "{% translate 'Quiz Title' %}", |
33 | | - "add_question": "{% translate 'Add Question' %}", |
34 | | - "quiz_settings": "{% translate 'Quiz Settings' %}", |
35 | | - "waiting_period": "{% translate 'Waiting Period' %}", |
36 | | - "quiz_waiting_tooltip": "{% translate 'Time to wait after the previous content delivery before sending this quiz' %}", |
37 | | - "required_score": "{% translate 'Required Score to Pass (%)' %}", |
38 | | - "score_tooltip": "{% translate 'Minimum percentage score required to pass this quiz' %}", |
39 | | - "period": "{% translate 'Period' %}", |
40 | | - "period_tooltip": "{% translate 'Time to wait after the previous content delivery before sending this quiz' %}", |
41 | | - "percentage": "{% translate 'Percentage' %}", |
42 | | - "quiz_deadline": "{% translate 'Deadline to Complete Quiz' %}", |
43 | | - "deadline_tooltip": "{% translate 'Maximum time allowed to complete the quiz' %}", |
44 | | - "question_selection_strategy": "{% translate 'Selection Strategy' %}", |
45 | | - "question_selection_strategy_tooltip": "{% translate 'Choose how questions are selected for each quiz attempt, if total questions is less than 6, all questions will be used even if \'Random Questions\' is selected' %}", |
46 | | - "all_questions": "{% translate 'All Questions' %}", |
47 | | - "random_questions": "{% translate 'Random Questions' %}", |
48 | | - "question": "{% translate 'Question' %}", |
49 | | - "add_option": "{% translate 'Add Option' %}", |
50 | | - "option_text": "{% translate 'Option Text' %}", |
51 | | - "options": "{% translate 'Options' %}", |
52 | | - "correct_answer": "{% translate 'Correct Answer' %}", |
53 | | - "actions": "{% translate 'Actions' %}", |
54 | | - "quiz_title_empty": "{% translate 'Quiz title cannot be empty.' %}", |
55 | | - "at_least_one_question": "{% translate 'Quiz must have at least one question' %}", |
56 | | - "at_least_two_options": "{% translate 'Question QUESTION_NUMBER must have at least two answer options' %}", |
57 | | - "at_least_one_correct": "{% translate 'Question QUESTION_NUMBER must have at least one correct answer' %}", |
58 | | - "fix_errors": "{% translate 'Please fix the errors in the form before submitting.' %}", |
59 | | - "lesson_title_required": "{% translate 'Lesson title is required.' %}", |
60 | | - "lesson_content_required": "{% translate 'Lesson content is required.' %}", |
61 | | - "delete_content_confirmation": "{% translate 'Are you sure you want to delete the content: CONTENT_TITLE?' %}", |
62 | | - "unverified": "{% translate 'Unverified' %}", |
63 | | - "active": "{% translate 'Active' %}", |
64 | | - "deactivated": "{% translate 'Deactivated' %}", |
65 | | - "completed": "{% translate 'Completed' %}", |
66 | | - "enrollments_distribution": "{% translate 'Enrollments Distribution' %}", |
67 | | - "weekly_enrollments": "{% translate 'Weekly Enrollments' %}" |
68 | | -{% endblock %} |
69 | 3 | {% block extra_head %} |
70 | 4 | {% vite_asset 'platform/course/Course.jsx' %} |
71 | 5 | {% endblock %} |
0 commit comments