Código Python:
Ver originaldef getNavigationLink(self, prevPage, nextPage):
"""
return the next link url of this page
"""
html = "<div class=\"noprt\" align=\"right\">"
if nextPage:
if prevPage:
html += " | "
html += "<a class=\"b_siguiente\" href=\""+quote(nextPage.name)+".html\">"
html += " %s »</a>" % _('Next')
html += '<img src="flecha_izq.png" alt="Siguiente" />'
html += "</div>\n"
return html
Lo mejor es que hubieran usado algún sistemas de templates para separar el código de python con el html.