addition of new dashboard
This commit is contained in:
22
backend/http/views/dashboard.ejs
Normal file
22
backend/http/views/dashboard.ejs
Normal file
@@ -0,0 +1,22 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<%- include('./include/header.ejs', { title: 'JLINC - Dashboard' }) %>
|
||||
|
||||
<% for (const type in config.appModules) { %>
|
||||
<% if (config.appModules[type].internal) { continue; } %>
|
||||
<%-
|
||||
include('./include/app.ejs', {
|
||||
app: config.appModules[type],
|
||||
usage: usage ? usage[type] : null
|
||||
})
|
||||
%>
|
||||
<% } %>
|
||||
|
||||
<%-
|
||||
include('./include/agreements.ejs', {
|
||||
app: config.appModules['core']
|
||||
})
|
||||
%>
|
||||
|
||||
<%- include('./include/footer.ejs') %>
|
||||
Reference in New Issue
Block a user