diff options
Diffstat (limited to 'modules/mm_html.py')
| -rw-r--r-- | modules/mm_html.py | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/modules/mm_html.py b/modules/mm_html.py index 724197605..fae347464 100644 --- a/modules/mm_html.py +++ b/modules/mm_html.py @@ -152,25 +152,22 @@ class HTMLFormatter: def FormatEditingOption(self): "Present editing options, according to list privacy." - text = ("<b>%s subscribers</b>, to edit your subscription options" + text = ("<b>%s subscribers</b>, to edit your subscription options:" % self.real_name) text = text + " %senter your email address: " if self.private_roster == 0: - text = text % "<b><i>either</i></b> " + text = text % "<p><b><i>Either</i></b> " else: text = text % "" text = (text - + "<ul>" + htmlformat.TextBox('info', size=40).Format() + " " + htmlformat.SubmitButton('UserOptions', - 'Edit Options').Format() - + "</ul>") + 'Edit Options').Format()) if self.private_roster == 0: - text = text + ("<p><b><i>or</i></b> visit the subscribers list" - ' (<a href="#subscribers">above</a>) and select' - " your entry.") + text = text + ("<p><b><i>Or</i></b> visit the subscribers list" + " (above) and select your entry.") return text def FormatRosterOptionForAdmin(self): |
