diff options
| author | klm | 1998-03-30 18:19:57 +0000 |
|---|---|---|
| committer | klm | 1998-03-30 18:19:57 +0000 |
| commit | db90860213e4718de4962eb297a93d87b4e7a5b5 (patch) | |
| tree | b20e93a7d0632857cecc796f35d93d1480f05890 /modules/mm_html.py | |
| parent | febbee9795a120529b67edff063ce55792114cc2 (diff) | |
| download | mailman-db90860213e4718de4962eb297a93d87b4e7a5b5.tar.gz mailman-db90860213e4718de4962eb297a93d87b4e7a5b5.tar.zst mailman-db90860213e4718de4962eb297a93d87b4e7a5b5.zip | |
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): |
