diff options
| author | bwarsaw | 1999-05-02 22:33:47 +0000 |
|---|---|---|
| committer | bwarsaw | 1999-05-02 22:33:47 +0000 |
| commit | 1e3924819a2ba755dae7a4beffb43c1f0a9606a0 (patch) | |
| tree | 86af80db9da5112bfd8e000beb1ef582eb8323de | |
| parent | ad71ebde439423c510037c3d8216dfed79ae9096 (diff) | |
| download | mailman-1e3924819a2ba755dae7a4beffb43c1f0a9606a0.tar.gz mailman-1e3924819a2ba755dae7a4beffb43c1f0a9606a0.tar.zst mailman-1e3924819a2ba755dae7a4beffb43c1f0a9606a0.zip | |
FormatListinfoOverview(): Include the mailman logo in the overview
page.
| -rw-r--r-- | Mailman/Cgi/listinfo.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Mailman/Cgi/listinfo.py b/Mailman/Cgi/listinfo.py index 68c147401..f9fa846fc 100644 --- a/Mailman/Cgi/listinfo.py +++ b/Mailman/Cgi/listinfo.py @@ -147,7 +147,11 @@ def FormatListinfoOverview(error=None): Bold(l.real_name)), l.description]) doc.AddItem(table) - + doc.AddItem('<hr>') + doc.AddItem( + Link(mm_cfg.MAILMAN_URL, + '<img src="%s" alt="Delivered by Mailman" border=0> v %s' % + (mm_cfg.DELIVERED_BY_URL, mm_cfg.VERSION))) print doc.Format(bgcolor="#ffffff") def FormatListListinfo(list): |
