-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
246 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ dist/ | |
build/ | ||
node_modules/ | ||
.vscode/ | ||
public/videos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ test-report.xml | |
|
||
# production | ||
build/ | ||
public/videos | ||
|
||
# misc | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ export enum PropertyTypes { | |
SUBDIVISION = 2, | ||
DRAFT_PARCEL = 3, | ||
DRAFT_BUILDING = 4, | ||
GEOCODER = 5, | ||
} |
55 changes: 55 additions & 0 deletions
55
frontend/src/features/help/components/text/TutorialHelpText.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import * as React from 'react'; | ||
|
||
/** | ||
* Help Text for the tutorial videos. | ||
*/ | ||
export const TutorialHelpText = () => { | ||
return ( | ||
<p> | ||
The following videos have been created to assist in the most common tasks. | ||
<ul> | ||
<li> | ||
<a href="/videos/tutorial-01.mp4" target="blank"> | ||
How to request access and how to approve a user's access | ||
</a> | ||
</li> | ||
<li> | ||
<a href="/videos/tutorial-02.mp4" target="blank"> | ||
How to search for properties | ||
</a> | ||
</li> | ||
<li> | ||
<a href="/videos/tutorial-03.mp4" target="blank"> | ||
How to add a building | ||
</a> | ||
</li> | ||
<li> | ||
<a href="/videos/tutorial-04.mp4" target="blank"> | ||
How to create a Disposal Project | ||
</a> | ||
</li> | ||
<li> | ||
<a href="/videos/tutorial-05.mp4" target="blank"> | ||
How to add assessment values to your properties | ||
</a> | ||
</li> | ||
<li> | ||
<a href="/videos/tutorial-06.mp4" target="blank"> | ||
SRES Disposal Project - Approve a project for ERP and then transfer the property within | ||
the GRE | ||
</a> | ||
</li> | ||
<li> | ||
<a href="/videos/tutorial-07.mp4" target="blank"> | ||
SRES Disposal Project - Approve a project for ERP plus approving for addition to the SPL | ||
</a> | ||
</li> | ||
<li> | ||
<a href="/videos/tutorial-08.mp4" target="blank"> | ||
Administration - How to add agencies | ||
</a> | ||
</li> | ||
</ul> | ||
</p> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.