summaryrefslogtreecommitdiff
path: root/Mailman/HTMLFormatter.py
diff options
context:
space:
mode:
authorklm1998-03-30 18:19:57 +0000
committerklm1998-03-30 18:19:57 +0000
commitdb90860213e4718de4962eb297a93d87b4e7a5b5 (patch)
treeb20e93a7d0632857cecc796f35d93d1480f05890 /Mailman/HTMLFormatter.py
parentfebbee9795a120529b67edff063ce55792114cc2 (diff)
downloadmailman-db90860213e4718de4962eb297a93d87b4e7a5b5.tar.gz
mailman-db90860213e4718de4962eb297a93d87b4e7a5b5.tar.zst
mailman-db90860213e4718de4962eb297a93d87b4e7a5b5.zip
Diffstat (limited to 'Mailman/HTMLFormatter.py')
-rw-r--r--Mailman/HTMLFormatter.py13
1 files changed, 5 insertions, 8 deletions
diff --git a/Mailman/HTMLFormatter.py b/Mailman/HTMLFormatter.py
index 724197605..fae347464 100644
--- a/Mailman/HTMLFormatter.py
+++ b/Mailman/HTMLFormatter.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):