File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ def setUp(self):
22
22
self .ARCHIVE_DIR = settings .REPORT_ARCHIVE_DIR
23
23
self .RESULTS_PAGE = settings .HTML_REPORT
24
24
self .BAD_PAGE_LOG = settings .RESULTS_TABLE
25
+ self .DEFAULT_VALIDATION_TITLE = "Manual Check"
25
26
self .DEFAULT_VALIDATION_MESSAGE = (
26
27
settings .MASTERQA_DEFAULT_VALIDATION_MESSAGE )
27
28
self .WAIT_TIME_BEFORE_VERIFY = (
@@ -103,9 +104,10 @@ def __clear_out_old_logs(
103
104
104
105
def __jq_confirm_dialog (self , question ):
105
106
count = self .manual_check_count + 1
106
- title_content = ('<center><font color="#7700bb">Manual Check #%s:'
107
+ title = self .DEFAULT_VALIDATION_TITLE
108
+ title_content = ('<center><font color="#7700bb">%s #%s:'
107
109
'</font></center><hr><font color="#0066ff">%s</font>'
108
- '' % (count , question ))
110
+ '' % (title , count , question ))
109
111
title_content = js_utils .escape_quotes_if_needed (title_content )
110
112
jqcd = ("""jconfirm({
111
113
boxWidth: '32.5%%',
You can’t perform that action at this time.
0 commit comments