You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
721 B
721 B
| title | published | visible |
|---|---|---|
| to show graphs | false | false |
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
graph TD;
write_courses_with_m3p2-->display_in_website;
write_courses_with_m3p2-->create_customized_pdf;
write_courses_with_m3p2-->use_in_videoprojection;
display_in_website-->student;
create_customized_pdf-->student;
use_in_videoprojection-->student;
graph LR
subgraph M3P2
File[File]
Website[Website]
Pipeline[Pipeline]
end
Teacher((Teacher))
Student((Student))
Student --> |reads| Website
Teacher --> |edits| File
File --> |triggers| Pipeline
Pipeline --> |updates| Website