diff options
author | ankitjavalkar | 2017-03-01 17:43:38 +0530 |
---|---|---|
committer | ankitjavalkar | 2017-03-01 17:43:38 +0530 |
commit | ee3b4a2a081557f510674df489ac7479e31f5e82 (patch) | |
tree | f5b315ce2f2c2e1bc121685840e145384be52e22 /yaksh/templates/user.html | |
parent | b001bc98db69e1ef1926b0f2103bf5a291682f93 (diff) | |
download | online_test-ee3b4a2a081557f510674df489ac7479e31f5e82.tar.gz online_test-ee3b4a2a081557f510674df489ac7479e31f5e82.tar.bz2 online_test-ee3b4a2a081557f510674df489ac7479e31f5e82.zip |
Fix selenium tests:
- Fix addition of answer to codemirror using selenium
- Add custom exception when selenium fails
- Add id to logout button on student interface
- Fix imports for Python3 support in load_test.py
Diffstat (limited to 'yaksh/templates/user.html')
-rw-r--r-- | yaksh/templates/user.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yaksh/templates/user.html b/yaksh/templates/user.html index 1707305..0d1f980 100644 --- a/yaksh/templates/user.html +++ b/yaksh/templates/user.html @@ -16,7 +16,7 @@ <div class= "collapse navbar-collapse" id="navbar"> <ul class="nav navbar-nav navbar-right"> <li><a href="{{ URL_ROOT }}/exam/viewprofile"> {{ user.get_full_name.title }} </a></li> - <li><a style='cursor:pointer' onClick='location.replace("{{URL_ROOT}}/exam/logout/");'> <span class="glyphicon glyphicon-log-out">Logout </span></a></li> + <li><a style='cursor:pointer' id='logout' onClick='location.replace("{{URL_ROOT}}/exam/complete/");'> <span class="glyphicon glyphicon-log-out">Logout </span></a></li> </ul> </div><!-- /.navbar --> </div><!-- /.container --> |