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