diff options
| author | bwarsaw | 2001-11-05 23:12:53 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-11-05 23:12:53 +0000 |
| commit | 2cbba73102a2bb524934cbecbdccba91f41c2822 (patch) | |
| tree | bbdef0482a28eb219bd9c2466dd36fca4450204d /Mailman/Cgi/admin.py | |
| parent | eceed627c8bc51a05f6adaa826b82c89a5c5db1d (diff) | |
| download | mailman-2cbba73102a2bb524934cbecbdccba91f41c2822.tar.gz mailman-2cbba73102a2bb524934cbecbdccba91f41c2822.tar.zst mailman-2cbba73102a2bb524934cbecbdccba91f41c2822.zip | |
password_input(): Daniel Buchmann rightly points out that the text
explanation needs to be written to reflect the fact that password
inputs are not on the general optinos page anymore.
Diffstat (limited to 'Mailman/Cgi/admin.py')
| -rw-r--r-- | Mailman/Cgi/admin.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Mailman/Cgi/admin.py b/Mailman/Cgi/admin.py index 2e19f3220..f9ca3d167 100644 --- a/Mailman/Cgi/admin.py +++ b/Mailman/Cgi/admin.py @@ -501,7 +501,7 @@ def show_results(mlist, doc, category, subcat, cgidata): SubmitButton('allmodbit_btn', _('Set'))]) form.AddItem(table) elif category == 'passwords': - form.AddItem(Center(password_inputs())) + form.AddItem(Center(password_inputs(mlist))) form.AddItem(Center(submit_button())) else: form.AddItem(show_variables(mlist, category, subcat, cgidata, doc)) @@ -1042,7 +1042,8 @@ def mass_remove(mlist, container): -def password_inputs(): +def password_inputs(mlist): + adminurl = mlist.GetScriptURL('admin', absolute=1) table = Table(cellspacing=3, cellpadding=4) table.AddRow([Center(Header(2, _('Change list ownership passwords')))]) table.AddCellInfo(table.GetCurrentRowIndex(), 0, colspan=2, @@ -1060,8 +1061,8 @@ subscription requests, and disposing of held postings. Of course, the <p>In order to split the list ownership duties into administrators and moderators, you must set a separate moderator password in the fields below, -and also provide the email addresses of the list moderators in the section -above.""")]) +and also provide the email addresses of the list moderators in the +<a href="%(adminurl)s/general">general options section</a>.""")]) table.AddCellInfo(table.GetCurrentRowIndex(), 0, colspan=2) # Set up the admin password table on the left atable = Table(border=0, cellspacing=3, cellpadding=4, |
