diff --git a/pylons_app/templates/changelog/changelog.html b/pylons_app/templates/changelog/changelog.html --- a/pylons_app/templates/changelog/changelog.html +++ b/pylons_app/templates/changelog/changelog.html @@ -62,7 +62,7 @@ from pylons_app.lib import filters %endif %for p_cs in reversed(cs.parents): -
${_('Parrent')} ${p_cs.revision}: ${h.link_to(p_cs.raw_id, +
${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.raw_id, h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
%endfor diff --git a/pylons_app/templates/changeset/changeset.html b/pylons_app/templates/changeset/changeset.html --- a/pylons_app/templates/changeset/changeset.html +++ b/pylons_app/templates/changeset/changeset.html @@ -46,7 +46,7 @@ from pylons_app.lib import filters
%endif %for p_cs in reversed(c.changeset.parents): -
${_('Parrent')} ${p_cs.revision}: ${h.link_to(p_cs.raw_id, +
${_('Parent')} ${p_cs.revision}: ${h.link_to(p_cs.raw_id, h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
%endfor