From 753e25e99ddf57be78ff27ad89cb7e1bbc99d041 Mon Sep 17 00:00:00 2001 From: Marius Peter Date: Sat, 18 Jul 2026 23:23:35 +0200 Subject: Initial commit: HITO MVP Heavy Duty I prescriptive training system encoding Mentzer's methodology. - 4-day split program (Chest & Back, Legs, Shoulders, Arms) - Prescription engine with pre-exhaust superset structure - Strict progression logic (+5kg large / +2.5kg small muscles) - Recovery gating with stall-based extension and override - Onboarding via experience level (Novice/Intermediate/Advanced) - Session logging with full progression analysis - Exercise substitution (33 alternatives for 17 canonical movements) - Objectivist aesthetic: black/gold, serif, rectilinear Stack: Hunchentoot, Mito/SQLite, Djula, SBCL --- templates/session-complete.html | 46 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 templates/session-complete.html (limited to 'templates/session-complete.html') diff --git a/templates/session-complete.html b/templates/session-complete.html new file mode 100644 index 0000000..8cd18b3 --- /dev/null +++ b/templates/session-complete.html @@ -0,0 +1,46 @@ +{% extends "base.html" %} + +{% block title %} — Session Complete{% endblock %} + +{% block content %} +
+

Session Complete

+ +
+ {% for result in results %} +
+ {{ result.exercise_name }} + {{ result.text }} +
+ {% endfor %} +
+ + {% if has_increases %} +

+ Weight increased on {{ increase_count }} exercise{{ increase_plural }}. +

+ {% endif %} + + {% if has_stalls %} +

+ {{ stall_count }} stall{{ stall_plural }} detected. Extended recovery is indicated. +

+ {% endif %} + +
+

Recovery

+

Your next session is prescribed for {{ next_date }}.

+

{{ recovery_reason }}

+
+ + RETURN TO DASHBOARD +
+{% endblock %} + +{% block quote %} +
+ “The muscles grow during rest, not during training. Training is merely + the stimulus; rest is where adaptation occurs.” + — Mike Mentzer +
+{% endblock %} -- cgit v1.2.3