``` feat: Refactor calendar feature into blueprint - Moved calendar logic from `features/calendar.py` and `app.py` into a new blueprint at `routes/calendar.py`. - Removed the `Calendar` class and refactored logic into helper functions within the blueprint module for better organization and readability. - Eliminated the `pandas` dependency for date range generation, using standard `datetime` operations instead. - Resolved circular import issues between `db.py`, `extensions.py`, and `routes/calendar.py` by adjusting import locations. - Corrected `url_for` calls in templates (`calendar.html`, `partials/people_link.html`) to reference the new blueprint endpoint (`calendar.get_calendar`). - Fixed an `AttributeError` related to HTMX request checking in the calendar route. - Corrected `AttributeError` related to `.date()` calls on `datetime.date` objects in view processing functions. - Updated `templates/changelog/changelog.html` to document the refactoring and associated fixes. ```
46 lines
2.3 KiB
HTML
46 lines
2.3 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="p-4 md:p-6"> {# Add some overall padding for the page content area #}
|
|
<div class="bg-white shadow-md rounded-lg p-6"> {# Card container #}
|
|
<h1 class="text-2xl font-semibold text-gray-900 mb-6 border-b pb-2">Changelog</h1> {# Added bottom border to
|
|
heading #}
|
|
|
|
{# Container for the actual changelog entries with prose styling #}
|
|
<div class="prose max-w-none">
|
|
<p>Updates and changes to the site will be documented here, with the most recent changes listed first.</p>
|
|
|
|
<!-- New Entry for Refactoring -->
|
|
<hr class="my-6">
|
|
<h2 class="text-xl font-semibold mb-2">March 30, 2025</h2>
|
|
<ul class="list-disc pl-5 space-y-1">
|
|
<li>Refactored the calendar view and logic into its own blueprint (`routes/calendar.py`).</li>
|
|
<li>Cleaned up calendar code, removing the `Calendar` class and `pandas` dependency.</li>
|
|
<li>Fixed various bugs related to the calendar refactoring (circular imports, HTMX checks, `url_for`
|
|
build errors, date comparisons).</li>
|
|
</ul>
|
|
|
|
<!-- Example Entry Structure -->
|
|
<hr class="my-6"> {# Increased margin for HR #}
|
|
<h2 class="text-xl font-semibold mb-2">March 30, 2025</h2> {# Reduced margin-bottom for H2 #}
|
|
<ul class="list-disc pl-5 space-y-1"> {# Added space between list items #}
|
|
<li>Added the initial changelog page.</li>
|
|
<li>Fixed a minor styling issue on the dashboard.</li>
|
|
<li>Improved visual styling of the changelog page itself.</li> {# Added an entry for this change #}
|
|
<li>Refactored the calendar view and logic into its own blueprint (`routes/calendar.py`).</li>
|
|
</ul>
|
|
|
|
{# Add more entries below, following the pattern above #}
|
|
<!--
|
|
<hr class="my-6">
|
|
<h2 class="text-xl font-semibold mb-2">March 29, 2025</h2>
|
|
<ul class="list-disc pl-5 space-y-1">
|
|
<li>Implemented feature X.</li>
|
|
<li>Refactored component Y.</li>
|
|
</ul>
|
|
-->
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |