-
+
+
+
+
+ {answers.map((option, index) => (
+
+ ))}
+
+
+
+ Wrong. Try again.
+
+
-
-
+
diff --git a/client/src/templates/Challenges/video/show.css b/client/src/templates/Challenges/video/show.css
new file mode 100644
index 0000000000..5879c8b9d2
--- /dev/null
+++ b/client/src/templates/Challenges/video/show.css
@@ -0,0 +1,43 @@
+.video-quiz-options {
+ padding: 1px 16px;
+ background-color: var(--tertiary-background);
+}
+
+.video-quiz-option-label {
+ display: block;
+ margin: 20px;
+ cursor: pointer;
+ display: flex;
+ font-weight: normal;
+}
+
+.video-quiz-input-hidden {
+ position: absolute;
+ left: -9999px;
+}
+
+.video-quiz-input-visible {
+ margin-right: 15px;
+ position: relative;
+ top: 2px;
+ display: inline-block;
+ min-width: 20px;
+ min-height: 20px;
+ max-width: 20px;
+ max-height: 20px;
+ border-radius: 50%;
+ background-color: var(--secondary-background);
+ border: 2px solid var(--primary-color);
+ position: relative;
+}
+
+.video-quiz-selected-input {
+ width: 10px;
+ height: 10px;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ background-color: var(--primary-color);
+ border-radius: 50%;
+ transform: translate(-50%, -50%);
+}
diff --git a/client/utils/challengeTypes.js b/client/utils/challengeTypes.js
index f026be0557..4158942735 100644
--- a/client/utils/challengeTypes.js
+++ b/client/utils/challengeTypes.js
@@ -125,5 +125,6 @@ exports.helpCategory = {
'data-analysis-with-python': 'Certification Projects',
'data-analysis-with-python-projects': 'Certification Projects',
'machine-learning-with-python': 'Certification Projects',
- 'machine-learning-with-python-projects': 'Certification Projects'
+ 'machine-learning-with-python-projects': 'Certification Projects',
+ 'python-for-everybody': 'Python'
};
diff --git a/curriculum/schema/challengeSchema.js b/curriculum/schema/challengeSchema.js
index f7846817cd..11bc46fa16 100644
--- a/curriculum/schema/challengeSchema.js
+++ b/curriculum/schema/challengeSchema.js
@@ -10,7 +10,7 @@ function getSchemaForLang(lang) {
challengeOrder: Joi.number(),
challengeType: Joi.number()
.min(0)
- .max(10)
+ .max(11)
.required(),
checksum: Joi.number(),
dashedName: Joi.string(),