diff --git a/aocsync.py b/aocsync.py index e4befe7..7e58811 100755 --- a/aocsync.py +++ b/aocsync.py @@ -1929,9 +1929,10 @@ class HTMLGenerator: speed_multiple = speed_multiples.get((day, part), 0) row_history_modals = [] + aoc_url = f"https://adventofcode.com/{year}/day/{day}" html += f""" - Day {day} Part {part} + Day {day} Part {part} """ # Add timing data for each user @@ -2091,9 +2092,10 @@ class HTMLGenerator: continue for day in sorted(data[year].keys()): for part in sorted(data[year][day].keys()): + aoc_url = f"https://adventofcode.com/{year}/day/{day}" html += f""" {year} - {day} + {day} {part} """ for user in sorted(users):