diff --git a/britney2/excuse.py b/britney2/excuse.py
index 519b594..934410f 100644
--- a/britney2/excuse.py
+++ b/britney2/excuse.py
@@ -249,28 +249,9 @@ class Excuse(object):
"""Render the excuse in HTML"""
res = "%s (%s to %s)\n
\n" % \
(self.name, self.name, self.name, self.ver[0], self.ver[1])
- res += "- Migration status: %s\n" % self._format_verdict_summary()
- if self.maint:
- res = res + "
- Maintainer: %s\n" % (self.maint)
- if self.section and self.section.find("/") > -1:
- res = res + "
- Section: %s\n" % (self.section)
- if self.daysold is not None:
- if self.mindays == 0:
- res = res + ("
- %d days old\n" % self.daysold)
- elif self.daysold < self.mindays:
- res = res + ("
- Too young, only %d of %d days old\n" %
- (self.daysold, self.mindays))
- else:
- res = res + ("
- %d days old (needed %d days)\n" %
- (self.daysold, self.mindays))
- for x in self.htmlline:
- res = res + "
- " + x + "\n"
- res += self._render_dep_issues(self.all_deps, self.all_invalid_deps)
-
- for (n, a) in self.break_deps:
- if n not in self.all_deps:
- res += "
- Ignoring %s depends: %s\n" % (a, n, n)
-
+ info = self._text()
+ for l in info:
+ res += "
- %s\n" % l
res = res + "
\n"
return res