Commit 8b038061 authored by NaweenTharuka's avatar NaweenTharuka

feat: Updated path for grammer checker

parent b801b46e
...@@ -14,6 +14,7 @@ from . import emotiondetectionvideo ...@@ -14,6 +14,7 @@ from . import emotiondetectionvideo
import myprosody as mysp import myprosody as mysp
import pickle import pickle
from . import myprosody from . import myprosody
from . import grammerchecker
def test(request): def test(request):
p="publicspeech" p="publicspeech"
...@@ -45,7 +46,11 @@ def aboutus(request): ...@@ -45,7 +46,11 @@ def aboutus(request):
return render(request, 'users/aboutus.html') return render(request, 'users/aboutus.html')
def pronuciation(request): def pronuciation(request):
return render(request, 'users/pronuciation.html') result = grammerchecker.result
context= {
'result': result,
}
return render(request, 'users/pronuciation.html',context)
def warningemotionsaudio(request): def warningemotionsaudio(request):
return render(request, 'users/unusualemotionswarning.html') return render(request, 'users/unusualemotionswarning.html')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment