diff --git a/templates/changelog/changelog.html b/templates/changelog/changelog.html
index 4539372..7db745c 100644
--- a/templates/changelog/changelog.html
+++ b/templates/changelog/changelog.html
@@ -10,6 +10,22 @@
Updates and changes to the site will be documented here, with the most recent changes listed first.
+
+
+
April 13, 2025
+
+ - Added a dismissible exercise progress graph to the workout page:
+
+ - Added a graph icon next to each exercise name in the topset list
+ (`templates/partials/topset.html`).
+ - Clicking the icon loads the exercise progress graph inline using HTMX (`hx-get`, `hx-target`).
+
+ - Added a dismiss button (cross icon) to the loaded graph area.
+ - Implemented hyperscript (`_`) logic to show the dismiss button when the graph loads and clear
+ the graph/hide the button when clicked.
+
+
+
April 12, 2025
diff --git a/templates/partials/topset.html b/templates/partials/topset.html
index 9886cee..36155ec 100644
--- a/templates/partials/topset.html
+++ b/templates/partials/topset.html
@@ -1,11 +1,24 @@
{% if is_edit|default(false, true) == false %}
- {{ exercise_name
- }}
+
+ {{ exercise_name }}
+
+
{% else %}
|
+
+{# Target row modified for dismissible graph #}
+
+ |
+
+
+
+
+ |
\ No newline at end of file