Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
21_22-J-02
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
21_22-J-02
21_22-J-02
Commits
72636c11
Commit
72636c11
authored
Apr 19, 2022
by
NaweenTharuka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: linked pages for slide checker
parent
80fdf241
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
Presently/presently/users/templates/users/home.html
Presently/presently/users/templates/users/home.html
+1
-1
Presently/presently/users/urls.py
Presently/presently/users/urls.py
+1
-0
Presently/presently/users/views.py
Presently/presently/users/views.py
+3
-0
No files found.
Presently/presently/users/templates/users/home.html
View file @
72636c11
...
@@ -108,7 +108,7 @@
...
@@ -108,7 +108,7 @@
</form>
</form>
<small
id=
"dropzoneHelp"
class=
"form-text text-muted"
>
Max file size is 2MB and max number of files is 10.
</small>
<small
id=
"dropzoneHelp"
class=
"form-text text-muted"
>
Max file size is 2MB and max number of files is 10.
</small>
</div>
</div>
<a
href=
"{% url '
feedback
' %}"
class=
"btn btn-light mt-3"
id=
""
type=
"submit"
>
Upload
</a>
<a
href=
"{% url '
slidecheckerdashboard
' %}"
class=
"btn btn-light mt-3"
id=
""
type=
"submit"
>
Upload
</a>
</div>
</div>
</div>
</div>
...
...
Presently/presently/users/urls.py
View file @
72636c11
...
@@ -9,6 +9,7 @@ urlpatterns = [
...
@@ -9,6 +9,7 @@ urlpatterns = [
path
(
'register/'
,
views
.
register
,
name
=
'register'
),
path
(
'register/'
,
views
.
register
,
name
=
'register'
),
path
(
'profile/'
,
views
.
profile
,
name
=
'profile'
),
path
(
'profile/'
,
views
.
profile
,
name
=
'profile'
),
path
(
'feedback/'
,
views
.
feedback
,
name
=
'feedback'
),
path
(
'feedback/'
,
views
.
feedback
,
name
=
'feedback'
),
path
(
'feedback/slide-checker'
,
views
.
slidecheckerdashboard
,
name
=
'slidecheckerdashboard'
),
path
(
'feedback/summery'
,
views
.
overallfeedback
,
name
=
'overallfeedback'
),
path
(
'feedback/summery'
,
views
.
overallfeedback
,
name
=
'overallfeedback'
),
path
(
'feedback/pronuciation-vocubalry-errors'
,
views
.
pronuciation
,
name
=
'pronuciation'
),
path
(
'feedback/pronuciation-vocubalry-errors'
,
views
.
pronuciation
,
name
=
'pronuciation'
),
path
(
'feedback/emotion/audio'
,
views
.
emotionaudio
,
name
=
'emotionaudio'
),
path
(
'feedback/emotion/audio'
,
views
.
emotionaudio
,
name
=
'emotionaudio'
),
...
...
Presently/presently/users/views.py
View file @
72636c11
...
@@ -50,6 +50,9 @@ def pronuciation(request):
...
@@ -50,6 +50,9 @@ def pronuciation(request):
def
warningemotionsaudio
(
request
):
def
warningemotionsaudio
(
request
):
return
render
(
request
,
'users/unusualemotionswarning.html'
)
return
render
(
request
,
'users/unusualemotionswarning.html'
)
def
slidecheckerdashboard
(
request
):
return
render
(
request
,
'users/slidecheckerdashboard.html'
)
def
feedback
(
request
):
def
feedback
(
request
):
all_video
=
Video
.
objects
.
all
()
all_video
=
Video
.
objects
.
all
()
...
...
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