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
109a3dd2
Commit
109a3dd2
authored
Apr 16, 2022
by
NaweenTharuka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: Pronuciation errors displa UI structured
parent
9ae441c4
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
31 additions
and
3 deletions
+31
-3
Presently/presently/users/__pycache__/urls.cpython-39.pyc
Presently/presently/users/__pycache__/urls.cpython-39.pyc
+0
-0
Presently/presently/users/__pycache__/views.cpython-39.pyc
Presently/presently/users/__pycache__/views.cpython-39.pyc
+0
-0
Presently/presently/users/templates/users/feedback.html
Presently/presently/users/templates/users/feedback.html
+1
-1
Presently/presently/users/templates/users/pronuciation.html
Presently/presently/users/templates/users/pronuciation.html
+25
-0
Presently/presently/users/urls.py
Presently/presently/users/urls.py
+1
-0
Presently/presently/users/views.py
Presently/presently/users/views.py
+4
-2
No files found.
Presently/presently/users/__pycache__/urls.cpython-39.pyc
View file @
109a3dd2
No preview for this file type
Presently/presently/users/__pycache__/views.cpython-39.pyc
View file @
109a3dd2
No preview for this file type
Presently/presently/users/templates/users/feedback.html
View file @
109a3dd2
...
...
@@ -55,7 +55,7 @@
<h2>
Pronuciation and vocubalry Mistakes
</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing tristique hendrerit laoreet.
</p>
<div
class=
"align-center"
>
<a
class=
"btn btn-primary"
href=
""
type=
"submit"
>
View more
</a>
<a
class=
"btn btn-primary"
href=
"
{% url 'pronuciation' %}
"
type=
"submit"
>
View more
</a>
</div>
</div>
</div>
...
...
Presently/presently/users/templates/users/pronuciation.html
0 → 100644
View file @
109a3dd2
{% extends 'users/base.html' %}
{% load static %}
{% block content %}
<div
class=
"container"
>
<nav
aria-label=
"breadcrumb mt-4"
>
<ol
class=
"breadcrumb"
>
<li
class=
"breadcrumb-item"
><a
href=
"{% url 'home' %}"
>
Home
</a></li>
<li
class=
"breadcrumb-item"
><a
href=
"{% url 'feedback' %}"
>
Dashboard
</a></li>
<li
class=
"breadcrumb-item active"
aria-current=
"page"
>
Pronuciation and vocubalry errors
</li>
</ol>
</nav>
<div
class=
"heading-text heading-section text-center py-3"
>
<h4>
Pronuciation and vocubalry Errors
</h4>
<span
class=
"lead"
>
See what presently think about your presentation
</span>
</div>
<hr/>
<div
class=
"d-flex justify-content-center mb-5"
>
<a
class=
"btn btn-outline"
href=
"{% url 'overallfeedback' %}"
type=
"submit"
>
View summery detail
</a>
</div>
</div>
{% endblock content %}
Presently/presently/users/urls.py
View file @
109a3dd2
...
...
@@ -10,6 +10,7 @@ urlpatterns = [
path
(
'profile/'
,
views
.
profile
,
name
=
'profile'
),
path
(
'feedback/'
,
views
.
feedback
,
name
=
'feedback'
),
path
(
'feedback/summery'
,
views
.
overallfeedback
,
name
=
'overallfeedback'
),
path
(
'feedback/pronuciation-vocubalry-errors'
,
views
.
pronuciation
,
name
=
'pronuciation'
),
path
(
'feedback/emotion/audio'
,
views
.
emotionaudio
,
name
=
'emotionaudio'
),
path
(
'feedback/emotion/video'
,
views
.
emotionvideo
,
name
=
'emotionvideo'
),
path
(
'feedback/emotion/audio/prosody'
,
views
.
emotionaudioprosody
,
name
=
'emotionaudioprosody'
),
...
...
Presently/presently/users/views.py
View file @
109a3dd2
...
...
@@ -34,7 +34,6 @@ def home(request):
form
.
save
()
messages
.
success
(
request
,
f
'Your video was successfully uploaded'
)
return
redirect
(
'feedback'
)
# return HTTPResponse("<h3>Uploaded Successfully</h3>")
else
:
form
=
Video_form
()
return
render
(
request
,
'users/home.html'
,{
"form"
:
form
,
"all"
:
all_video
})
...
...
@@ -43,7 +42,10 @@ def contactus(request):
return
render
(
request
,
'users/contactus.html'
)
def
aboutus
(
request
):
return
render
(
request
,
'users/aboutus.html'
)
return
render
(
request
,
'users/aboutus.html'
)
def
pronuciation
(
request
):
return
render
(
request
,
'users/pronuciation.html'
)
def
feedback
(
request
):
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