11 lines
257 B
Plaintext
11 lines
257 B
Plaintext
<!-- Shows user specific Dashboard -->
|
|
<% if (user.role == "Admin") { %>
|
|
<% include admin %>
|
|
<% } %>
|
|
<% if (user.role == "Teacher") { %>
|
|
<% include teacherDashboard %>
|
|
<% } %>
|
|
<% if (user.role == "Student") { %>
|
|
<% include studentDashboard %>
|
|
<% } %>
|