Submit button on theme designer screen

merge-requests/30/head
Bob Mottram 2021-12-04 18:03:05 +00:00
parent d56a082ea8
commit 17eb7e0db4
1 changed files with 11 additions and 0 deletions

View File

@ -52,6 +52,17 @@ def htmlThemeDesigner(cssCache: {}, baseDir: str,
themeForm += ' <form method="POST" action="' + \
'/users/' + nickname + '/changeThemeSettings">\n'
timelineKey = accessKeys['menuTimeline']
submitKey = accessKeys['submitButton']
themeForm += \
' <center>\n' + \
' <button type="submit" class="button" ' + \
'name="submitThemeDesignerCancel" accesskey="' + timelineKey + '">' + \
translate['Go Back'] + '</button>\n' + \
' <button type="submit" class="button" ' + \
'name="submitThemeDesigner" accesskey="' + submitKey + '">' + \
translate['Submit'] + '</button>\n </center>\n'
themeForm += ' <table class="accesskeys">\n'
themeForm += ' <colgroup>\n'
themeForm += ' <col span="1" class="accesskeys-left">\n'