Interactive visual representation of the complete student learning journey, showing the flow from course access through completion and certification.
Interactive Flowchart:
This Mermaid.js flowchart provides a comprehensive visual guide to understanding how students progress through their complete learning experience in the YITP learning management system.
flowchart TD
A[Student Logs In] --> B[Access Course Dashboard]
B --> C[View Enrolled Courses]
C --> D[Select Course to Study]
D --> E[View Course Modules]
E --> F[Access First Lesson]
F --> G[Read Lesson Content]
G --> H[Engage with Multimedia]
H --> I{Lesson Complete?}
I -->|Yes| J[Mark Lesson as Complete]
I -->|No| G
J --> K{Quiz Available?}
K -->|Yes| L[Take Quiz]
K -->|No| M[Check Next Lesson]
L --> N{Quiz Passed?}
N -->|Yes| O[Receive Quiz Feedback]
N -->|No| P[Review Incorrect Answers]
P --> Q{Retake Available?}
Q -->|Yes| L
Q -->|No| R[Study Additional Resources]
R --> L
O --> M
M --> S{More Lessons Available?}
S -->|Yes| T[Unlock Next Lesson]
S -->|No| U{Module Complete?}
T --> F
U -->|Yes| V[Progress to Next Module]
U -->|No| W[Continue Current Module]
V --> E
W --> F
U -->|All Modules Complete| X[Course Completion Check]
X --> Y[Generate Certificate]
Y --> Z[Send Completion Email]
Z --> AA[Update Student Records]
AA --> BB[Display Achievement Badge]
BB --> CC[Unlock Advanced Courses]
%% Styling with YITP colors
classDef startEnd fill:#ff5d15,stroke:#1a2e53,stroke-width:3px,color:#fff
classDef process fill:#1a2e53,stroke:#ff5d15,stroke-width:2px,color:#fff
classDef decision fill:#f8f9fa,stroke:#ff5d15,stroke-width:2px,color:#1a2e53
classDef success fill:#28a745,stroke:#1a2e53,stroke-width:2px,color:#fff
classDef warning fill:#ffc107,stroke:#1a2e53,stroke-width:2px,color:#1a2e53
class A,CC startEnd
class B,C,D,E,F,G,H,J,L,O,T,V,X,Y,Z,AA,BB process
class I,K,N,Q,S,U decision
class O,Y,BB,CC success
class P,R warning
Flow Explanation:
This flowchart illustrates the complete learning experience, showing how students progress through content, assessments, and achievements in a structured, supportive environment that promotes learning success.