57 lines
1.4 KiB
Markdown
57 lines
1.4 KiB
Markdown
# {{ project_name }} Development Status
|
|
|
|
Last updated: {{ current_date }}
|
|
|
|
## Code Statistics
|
|
|
|
{% if stats %}
|
|
Total lines of code: **{{ stats.total_lines }}**
|
|
|
|
Number of source files: **{{ stats.file_count }}**
|
|
|
|
### Files by Language
|
|
{% for lang, count in stats.languages.items() %}
|
|
- **{{ lang }}**: {{ count }} files
|
|
{% endfor %}
|
|
|
|
### Top Files by Line Count
|
|
|
|
| File | Lines | Language | Path |
|
|
|------|------:|----------|------|
|
|
{% for file in stats.top_files %}
|
|
| {{ file.name }} | {{ file.lines }} | {{ file.language }} | {{ file.path }} |
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
## Feature Status
|
|
|
|
| Feature | Status | Description | Last Update | Owner |
|
|
|---------|--------|-------------|-------------|-------|
|
|
{% for feature_key, feature in features.items() %}
|
|
| {{ feature.display_name }} | {{ feature.status_emoji }} {{ feature.status }} | {{ feature.description }} | {{ feature.date }} | {{ feature.author }} |
|
|
{% endfor %}
|
|
|
|
## Recent Updates
|
|
|
|
{% for entry in changelog_entries %}
|
|
{{ entry }}
|
|
{% endfor %}
|
|
|
|
{% if known_issues %}
|
|
## Known Issues
|
|
|
|
{% for issue in known_issues %}
|
|
- {{ issue.description }} {% if issue.status %}({{ issue.status }}){% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if roadmap %}
|
|
## Roadmap
|
|
|
|
{% for milestone in roadmap %}
|
|
### {{ milestone.name }} ({{ milestone.target_date }})
|
|
{% for item in milestone.items %}
|
|
- {{ item.description }} {% if item.status %}[{{ item.status }}]{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endif %} |