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