+
+
+ {formatDuration(completionData.durationMin)}
+ Duration
+
+ {#if completionData.totalTonnage > 0}
+
+
+
+ {completionData.totalTonnage >= 1000
+ ? `${(completionData.totalTonnage / 1000).toFixed(1)}t`
+ : `${Math.round(completionData.totalTonnage)} kg`}
+
+ Tonnage
+
+ {/if}
+ {#if completionData.totalDistance > 0}
+
+
+ {completionData.totalDistance.toFixed(1)} km
+ Distance
+
+ {/if}
+
+
Exercises
+ {#each completionData.exerciseSummaries as ex}
+
+
+
+ {#if ex.isCardio}
+ {#if ex.distance > 0}
+ {ex.distance.toFixed(1)} km
+ {/if}
+ {#if ex.duration > 0}
+ {ex.duration} min
+ {/if}
+ {#if ex.pace > 0}
+ {formatPace(ex.pace)} avg
+ {/if}
+ {:else}
+ {#if ex.tonnage > 0}
+ {ex.tonnage >= 1000 ? `${(ex.tonnage / 1000).toFixed(1)}t` : `${Math.round(ex.tonnage)} kg`} volume
+ {/if}
+ {#if ex.bestWeight > 0}
+ Top: {ex.bestWeight} kg
+ {/if}
+ {#if ex.bestEst1rm > 0}
+ e1RM: {ex.bestEst1rm} kg
+ {/if}
+ {/if}
+
+
+ {/each}
+