Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2023-029
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
2023-029
2023-029
Commits
436196fe
Commit
436196fe
authored
Aug 28, 2023
by
janithgamage1.ed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: update
Desc : update project
parent
56189894
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
2 deletions
+42
-2
Project/Frontend/SignConnectPlus/src/menu-items/application.tsx
...t/Frontend/SignConnectPlus/src/menu-items/application.tsx
+7
-1
Project/Frontend/SignConnectPlus/src/pages/learning-management/dashboard.tsx
...gnConnectPlus/src/pages/learning-management/dashboard.tsx
+26
-0
Project/Frontend/SignConnectPlus/src/routes/MainRoutes.tsx
Project/Frontend/SignConnectPlus/src/routes/MainRoutes.tsx
+7
-0
Project/Frontend/SignConnectPlus/src/utils/locales/en.json
Project/Frontend/SignConnectPlus/src/utils/locales/en.json
+2
-1
No files found.
Project/Frontend/SignConnectPlus/src/menu-items/application.tsx
View file @
436196fe
...
...
@@ -85,7 +85,13 @@ const application: NavItemType = {
// title: <FormattedMessage id="learning-list" />,
// type: 'item',
// url: '/learning-management/list',
// },
// },
{
id
:
'
learning-dashboard
'
,
title
:
<
FormattedMessage
id=
"learning-dashboard"
/>,
type
:
'
item
'
,
url
:
'
/learning-management/dashboard
'
,
},
{
id
:
'
learning-curriculums
'
,
title
:
<
FormattedMessage
id=
"learning-curriculums"
/>,
...
...
Project/Frontend/SignConnectPlus/src/pages/learning-management/dashboard.tsx
0 → 100644
View file @
436196fe
// material-ui
// third-party
// project import
import
MainCard
from
'
components/MainCard
'
;
import
ScrollX
from
'
components/ScrollX
'
;
// assets
//types
// ==============================|| Dashboard ||============================== //
const
Dashboard
=
()
=>
{
return
(
<
MainCard
content=
{
false
}
>
<
ScrollX
>
</
ScrollX
>
</
MainCard
>
)
}
export
default
Dashboard
;
Project/Frontend/SignConnectPlus/src/routes/MainRoutes.tsx
View file @
436196fe
...
...
@@ -41,6 +41,9 @@ const TutorialManagementList = Loadable(lazy(() => import('pages/parameter/tutor
// render - ssl translate process page
const
SSLTranslateProcess
=
Loadable
(
lazy
(()
=>
import
(
'
pages/ssl-translate/process/process
'
)));
// render - learning-dashboard page
const
LearningDashboard
=
Loadable
(
lazy
(()
=>
import
(
'
pages/learning-management/dashboard
'
)));
// render - learning-curriculums-subscribed page
const
LearningCurriculumsSubscribed
=
Loadable
(
lazy
(()
=>
import
(
'
pages/learning-management/learning-curriculums-subscribed/list/list
'
)));
...
...
@@ -99,6 +102,10 @@ const MainRoutes = {
{
path
:
'
learning-management
'
,
children
:
[
{
path
:
'
dashboard
'
,
element
:
<
LearningDashboard
/>
},
{
path
:
'
curriculums
'
,
element
:
<
LearningCurriculums
/>
...
...
Project/Frontend/SignConnectPlus/src/utils/locales/en.json
View file @
436196fe
...
...
@@ -161,5 +161,6 @@
"learning-curriculums-subscribed"
:
"My Courses"
,
"learning-lead-board"
:
"Lead Board"
,
"learning-feedback"
:
"Feedback"
,
"ssl-translate"
:
"SSL Translate"
"ssl-translate"
:
"SSL Translate"
,
"learning-dashboard"
:
"Dashboard"
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment