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
4503eb08
Commit
4503eb08
authored
Apr 16, 2022
by
NaweenTharuka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: Unusual emotion detections audio
parent
58b6ede4
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/emotionaudio.html
Presently/presently/users/templates/users/emotionaudio.html
+2
-3
Presently/presently/users/templates/users/unusualemotionswarning.html
...esently/users/templates/users/unusualemotionswarning.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
+3
-0
No files found.
Presently/presently/users/__pycache__/urls.cpython-39.pyc
View file @
4503eb08
No preview for this file type
Presently/presently/users/__pycache__/views.cpython-39.pyc
View file @
4503eb08
No preview for this file type
Presently/presently/users/templates/users/emotionaudio.html
View file @
4503eb08
...
...
@@ -33,10 +33,9 @@
</div>
<div
class=
"col-4 px-3"
>
<div
class=
"p-t-30 text-center"
>
<h3
class=
"m-b-0 pb-4"
>
Emotion detections Real time
</h3>
<h3
class=
"m-b-0 pb-4"
>
Emotion detections Real time
</h3>
</div>
<a
type=
"button"
href=
"{% url 'warningemotionaudio' %}"
class=
"btn btn-warning"
>
Warning!
</a>
</div>
</div>
<hr/>
...
...
Presently/presently/users/templates/users/unusualemotionswarning.html
0 → 100644
View file @
4503eb08
{% 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"
><a
href=
"{% url 'feedback' %}"
>
Emotion-predictions(Audio)
</a></li>
<li
class=
"breadcrumb-item active"
aria-current=
"page"
>
Warning-emotions(Audio)
</li>
</ol>
</nav>
<div
class=
"heading-text heading-section text-center py-3"
>
<h4>
Unusual Emotion Detections - Audio
</h4>
</div>
<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 @
4503eb08
...
...
@@ -12,6 +12,7 @@ urlpatterns = [
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/audio/warnings'
,
views
.
warningemotionsaudio
,
name
=
'warningemotionaudio'
),
path
(
'feedback/emotion/video'
,
views
.
emotionvideo
,
name
=
'emotionvideo'
),
path
(
'feedback/emotion/audio/prosody'
,
views
.
emotionaudioprosody
,
name
=
'emotionaudioprosody'
),
path
(
'login/'
,
auth_view
.
LoginView
.
as_view
(
template_name
=
'users/login.html'
),
name
=
"login"
),
...
...
Presently/presently/users/views.py
View file @
4503eb08
...
...
@@ -47,6 +47,9 @@ def aboutus(request):
def
pronuciation
(
request
):
return
render
(
request
,
'users/pronuciation.html'
)
def
warningemotionsaudio
(
request
):
return
render
(
request
,
'users/unusualemotionswarning.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