X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/f6bddba1c55448fae6674bb03838fceb4bd982ba..680dea8afeb9fb32974c2db772e0b2861c1af4d8:/code/templates/functions.mako diff --git a/code/templates/functions.mako b/code/templates/functions.mako index a72648a..4f23635 100644 --- a/code/templates/functions.mako +++ b/code/templates/functions.mako @@ -43,6 +43,9 @@ ${databaseList(sorted(database.Autoinstall.query(), key=lambda x: x.description) <%! def jquote(string): return "'" + string.replace('\\', '\\\\').replace("'", "\\'").replace('\n', '\\n') + "'" + +def nl2br(string): + return string.replace('\n', '
') %> <%def name="helppopup(subj)">