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
ceebc34c
Commit
ceebc34c
authored
Feb 07, 2022
by
NaweenTharuka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: Overall Summery views
parent
a950ff0d
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
34 additions
and
1 deletion
+34
-1
Presently/presently/db.sqlite3
Presently/presently/db.sqlite3
+0
-0
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
+5
-0
Presently/presently/users/templates/users/overallfeedback.html
...ntly/presently/users/templates/users/overallfeedback.html
+24
-0
Presently/presently/users/urls.py
Presently/presently/users/urls.py
+1
-0
Presently/presently/users/views.py
Presently/presently/users/views.py
+4
-1
No files found.
Presently/presently/db.sqlite3
View file @
ceebc34c
No preview for this file type
Presently/presently/users/__pycache__/urls.cpython-39.pyc
View file @
ceebc34c
No preview for this file type
Presently/presently/users/__pycache__/views.cpython-39.pyc
View file @
ceebc34c
No preview for this file type
Presently/presently/users/templates/users/emotionaudio.html
View file @
ceebc34c
...
...
@@ -67,6 +67,11 @@
cursumus.
</p>
</div>
</div>
<div
class=
"d-flex justify-content-center mb-5"
>
<a
class=
"btn btn-primary"
href=
"{% url 'overallfeedback' %}"
type=
"submit"
>
View summery detail
</a>
</div>
</div>
{% endblock content %}
Presently/presently/users/templates/users/overallfeedback.html
0 → 100644
View file @
ceebc34c
{% extends 'users/base.html' %}
{% load static %}
{% block content %}
<div
class=
"container"
>
<div
class=
"heading-text heading-section text-center py-5"
>
<h2>
What Presently think about your skills ?
</h2>
<span
class=
"lead"
>
Improve your skills and be a good performer!
</span>
</div>
<h4>
Overall Summery
</h4>
<div
class=
"row pb-5"
>
<div
class=
"col-lg-12"
>
<ul
class=
"list list-legend"
>
<li><span
style=
"background-color:#4a81d4"
></span>
Pronunciation
</li>
<li><span
style=
"background-color:#e3eaef"
></span>
Vocubalary
</li>
<li><span
style=
"background-color:#4fc6e1"
></span>
Emotions
</li>
</ul>
<div
id=
"morris_4"
></div>
</div>
</div>
</div>
{% endblock content %}
Presently/presently/users/urls.py
View file @
ceebc34c
...
...
@@ -9,6 +9,7 @@ urlpatterns = [
path
(
'register/'
,
views
.
register
,
name
=
'register'
),
path
(
'profile/'
,
views
.
profile
,
name
=
'profile'
),
path
(
'feedback/'
,
views
.
feedback
,
name
=
'feedback'
),
path
(
'feedback/summery'
,
views
.
overallfeedback
,
name
=
'overallfeedback'
),
path
(
'feedback/emotion/audio'
,
views
.
emotionaudio
,
name
=
'emotionaudio'
),
path
(
'login/'
,
auth_view
.
LoginView
.
as_view
(
template_name
=
'users/login.html'
),
name
=
"login"
),
path
(
'logout/'
,
auth_view
.
LogoutView
.
as_view
(
template_name
=
'users/logout.html'
),
name
=
"logout"
),
...
...
Presently/presently/users/views.py
View file @
ceebc34c
...
...
@@ -18,7 +18,10 @@ def feedback(request):
return
render
(
request
,
'users/feedback.html'
)
def
emotionaudio
(
request
):
return
render
(
request
,
'users/emotionaudio.html'
)
return
render
(
request
,
'users/emotionaudio.html'
)
def
overallfeedback
(
request
):
return
render
(
request
,
'users/overallfeedback.html'
)
def
register
(
request
):
if
request
.
method
==
"POST"
:
...
...
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