Added results CRUD and result detailed view

This commit is contained in:
2021-12-04 12:20:03 +00:00
parent 0a106cb952
commit 56a351bbb2
18 changed files with 576 additions and 59 deletions

View File

@ -172,6 +172,11 @@ body {
font-size: 26pt;
}
.button-icon {
font-size: 20px;
margin-right: 2px;
}
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,

View File

@ -363,7 +363,7 @@ function render_question() {
function check_answered() {
var question = questions[current_question];
var name = question.q_no;
if (question_status[current_question] == 0) {
if (question_status[current_question] == 0 || question_status[current_question] == -1) {
if (!$(`input[name='${name}']:checked`).val()) {
question_status[current_question] = -1;
} else {