46 | | <form action="dumpykota.cgi" method="GET"> |
47 | | <table> |
48 | | <tr> |
49 | | <td> |
50 | | <p> |
51 | | <a href="http://www.librelogiciel.com/software/"><img src="%s?version=%s" alt="PyKota's Logo" /></a> |
52 | | <br /> |
53 | | <a href="http://www.librelogiciel.com/software/">PyKota v%s</a> |
54 | | </p> |
55 | | </td> |
56 | | <td colspan="2"> |
57 | | <h1>%s</h1> |
58 | | </td> |
59 | | </tr> |
60 | | <tr> |
61 | | <td colspan="3" align="center"> |
62 | | <input type="submit" name="report" value="%s" /> |
63 | | </td> |
64 | | </tr> |
65 | | </table> |
66 | | <p> |
67 | | %s |
68 | | </p>""" |
| 46 | <p> |
| 47 | <form action="dumpykota.cgi" method="GET"> |
| 48 | <table> |
| 49 | <tr> |
| 50 | <td> |
| 51 | <p> |
| 52 | <a href="%s"><img src="%s?version=%s" alt="PyKota's Logo" /></a> |
| 53 | <br /> |
| 54 | <a href="%s">PyKota v%s</a> |
| 55 | </p> |
| 56 | </td> |
| 57 | <td colspan="2"> |
| 58 | <h1>%s</h1> |
| 59 | </td> |
| 60 | </tr> |
| 61 | <tr> |
| 62 | <td colspan="3" align="center"> |
| 63 | <input type="submit" name="report" value="%s" /> |
| 64 | </td> |
| 65 | </tr> |
| 66 | </table> |
| 67 | <p> |
| 68 | %s |
| 69 | </p>""" |
87 | | print header % (self.getCharset(), _("PyKota Data Dumper"), self.config.getLogoURL(), version.__version__, version.__version__, _("PyKota Data Dumper"), _("Dump"), _("Please click on the above button")) |
| 96 | print header % (self.getCharset(), _("PyKota Data Dumper"), \ |
| 97 | self.config.getLogoLink(), \ |
| 98 | self.config.getLogoURL(), version.__version__, \ |
| 99 | self.config.getLogoLink(), \ |
| 100 | version.__version__, _("PyKota Data Dumper"), \ |
| 101 | _("Dump"), _("Please click on the above button")) |