Add learning module
This commit is contained in:
parent
44d8c1645e
commit
c9a5fd573c
|
|
@ -276,7 +276,7 @@ wichtige Grundlage für eine erfolgreiche Beziehung.
|
|||
VideoBlockFactory(
|
||||
url="https://onedrive.live.com/embed?cid=26E4A934B79DCE5E&resid=26E4A934B79DCE5E%2153350&authkey=AId6i7z_X8l2fHw",
|
||||
description="In dieser Circle zeigt dir ein Fachexperte anhand von Kundensituationen, wie du erfolgreich"
|
||||
"den Kundenbedarf ermitteln, analysieren, priorisieren und anschliessend zusammenfassen kannst.",
|
||||
"den Kundenbedarf ermitteln, analysieren, priorisieren und anschliessend zusammenfassen kannst.",
|
||||
),
|
||||
)
|
||||
],
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ from vbv_lernwelt.learnpath.models_learning_unit_content import (
|
|||
BookBlock,
|
||||
DocumentBlock,
|
||||
ExerciseBlock,
|
||||
LearningModuleBlock,
|
||||
MediaLibraryBlock,
|
||||
OnlineTrainingBlock,
|
||||
PlaceholderBlock,
|
||||
|
|
@ -286,6 +287,7 @@ class LearningContent(Page):
|
|||
("video", VideoBlock()),
|
||||
("resource", ResourceBlock()),
|
||||
("exercise", ExerciseBlock()),
|
||||
("learningmodule", LearningModuleBlock()),
|
||||
("online_training", OnlineTrainingBlock()),
|
||||
("media_library", MediaLibraryBlock()),
|
||||
("document", DocumentBlock()),
|
||||
|
|
|
|||
|
|
@ -34,6 +34,14 @@ class ExerciseBlock(blocks.StructBlock):
|
|||
icon = "media"
|
||||
|
||||
|
||||
class LearningModuleBlock(blocks.StructBlock):
|
||||
description = blocks.TextBlock()
|
||||
url = blocks.TextBlock()
|
||||
|
||||
class Meta:
|
||||
icon = "media"
|
||||
|
||||
|
||||
class MediaLibraryBlock(blocks.StructBlock):
|
||||
description = blocks.TextBlock()
|
||||
url = blocks.TextBlock()
|
||||
|
|
|
|||
Loading…
Reference in New Issue