# {{ title }} ## Overview This document tracks the implementation status of all features in the {{ project_name }} project. ## Feature Status Summary | Status | Description | |--------|-------------| | ✅ Completed | Features that are fully implemented and tested | | 🔄 In Progress | Features currently being implemented | | 📝 Planned | Features planned for future implementation | ## Features {% for feature_key, feature in features.items() %} ### {{ feature_key }} **Status:** {{ feature.status_emoji }} {{ feature.status }} **Description:** {{ feature.description }} **Last Update:** {{ feature.date }} {% if feature.author %}**Owner:** {{ feature.author }}{% endif %} {% if feature.details %}**Details:** {{ feature.details }}{% endif %} {% endfor %} ## Feature Categories ### Completed Features {% for feature_key, feature in features.items() %} {% if feature.status == 'completed' %} - **{{ feature_key }}**: {{ feature.description }} {% endif %} {% endfor %} ### In Progress Features {% for feature_key, feature in features.items() %} {% if feature.status == 'in_progress' %} - **{{ feature_key }}**: {{ feature.description }} {% endif %} {% endfor %} ### Planned Features {% for feature_key, feature in features.items() %} {% if feature.status == 'planned' %} - **{{ feature_key }}**: {{ feature.description }} {% endif %} {% endfor %}