mirror of
https://github.com/sstent/FitTrack_ReportGenerator.git
synced 2026-01-31 03:21:52 +00:00
This commit introduces the initial version of the FitTrack Report Generator, a FastAPI application for analyzing workout files. Key features include: - Parsing of FIT, TCX, and GPX workout files. - Analysis of power, heart rate, speed, and elevation data. - Generation of summary reports and charts. - REST API for single and batch workout analysis. The project structure has been set up with a `src` directory for core logic, an `api` directory for the FastAPI application, and a `tests` directory for unit, integration, and contract tests. The development workflow is configured to use Docker and modern Python tooling.
45 lines
1.4 KiB
HTML
45 lines
1.4 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="navigation"></div>
|
|
|
|
<div class="activities-container">
|
|
<div class="card activities-table-card">
|
|
<div class="card-header">
|
|
<h3>Activities</h3>
|
|
</div>
|
|
<div class="table-container">
|
|
<table class="activities-table" id="activities-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Date</th>
|
|
<th>Activity Type</th>
|
|
<th>Duration</th>
|
|
<th>Distance</th>
|
|
<th>Max HR</th>
|
|
<th>Avg HR</th>
|
|
<th>Power</th>
|
|
<th>Calories</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="activities-tbody">
|
|
<!-- Data populated by JavaScript -->
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="pagination-container">
|
|
<div class="pagination" id="pagination">
|
|
<!-- Pagination controls -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block page_scripts %}
|
|
<script src="/static/activities.js"></script>
|
|
{% endblock %}
|