main
Bob Mottram 2020-10-01 21:04:14 +01:00
parent 093b13d413
commit b57546ac74
1 changed files with 3 additions and 2 deletions

View File

@ -1258,11 +1258,12 @@ def htmlEditLinks(translate: {}, baseDir: str, path: str,
with open(linksFilename, 'r') as fp:
linksStr = fp.read()
editLinksForm = \
editLinksForm += \
'<div class="container">'
editLinksForm += \
' ' + \
translate['One link per line. Description followed by the link.']
translate['One link per line. Description followed by the link.'] + \
'<br>'
editLinksForm += \
' <textarea id="message" name="editedLinks" style="height:500px">' + \
linksStr + '</textarea>'