Commit 72636c11 authored by NaweenTharuka's avatar NaweenTharuka

feat: linked pages for slide checker

parent 80fdf241
...@@ -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>
......
...@@ -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'),
......
...@@ -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()
......
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