diff --git a/scripts/abint/abint.html.j2 b/scripts/abint/abint.html.j2 index 1770a98..f531649 100644 --- a/scripts/abint/abint.html.j2 +++ b/scripts/abint/abint.html.j2 @@ -76,6 +76,12 @@ + +
+ +
\ No newline at end of file diff --git a/scripts/abint/abint.py b/scripts/abint/abint.py index 19567e5..f4cb8b2 100755 --- a/scripts/abint/abint.py +++ b/scripts/abint/abint.py @@ -125,7 +125,7 @@ def last_seen_report(data): template = env.get_template("abint.html.j2") with open("index.html", "w") as f: start = arrow.utcnow().shift(weeks=-100).floor("week") - f.write(template.render(bugs=data, start=start)) + f.write(template.render(bugs=data, start=start, now=arrow.now())) data = get_data()