Progressive Overload Planner
Plan your lifts, track linear progression, and generate your gym workout log.
Progress Week:
1
My Strength Training Log
Week: 1
Add Exercise to Routine
Added weekly if target reps met.
Manage Exercises
Review your current routine and remove exercises.
| Day | Exercise | Scheme | Current Weight | Action |
|---|
Danger Zone
No exercises found. Add some in the "Add Exercises" tab.
'; return; } Object.keys(days).sort().forEach(dayName => { const card = document.createElement('div'); card.className = 'stpop-card'; let listHtml = ''; days[dayName].forEach(ex => { const weightDisplay = ex.weight > 0 ? `${ex.weight} lbs` : 'Bodyweight'; const nextWeight = ex.weight > 0 ? (parseInt(ex.weight) + parseInt(ex.increment)) : 0; const nextText = nextWeight > 0 ? `Next: ${nextWeight} lbs` : ''; listHtml += `
${escapeHtml(ex.name)}
Sets
${ex.sets}
Reps
${ex.reps}
Weight
${weightDisplay}
If ${ex.sets}x${ex.reps} completed → Increase to ${nextWeight} lbs
` : ''}
${escapeHtml(dayName)}
-
${listHtml}
