Commit 402aeee
Changed files (1)
command.go
@@ -218,6 +218,9 @@ func parseUserTestAnswer(input string, record *ClientRecord, clientTest *ClientT
rightString := fmt.Sprintf(COLOR_RED+"%"+
strconv.Itoa(maxX-ApplicationView.COMMAND_PALLET_WIDTH-len(leftString)-4)+
"s\n"+COLOR_RESET, "[X]")
+ if record.Reference != "" {
+ rightString = fmt.Sprintf("%s%15s Ref: %s\n", rightString, "", record.Reference)
+ }
displayStringToMainScreen(leftString + rightString)
clientTest.Records[index].ClientAnswer = input
return 0, nil