{% extends "base.html" %} {% block title %}Changelog - garuda-pilot{% endblock %} {% block content %} {% if grouped_commits %} {% for date, commits in grouped_commits %}

{{ date }}

{% for commit in commits %}
{{ commit.short_hash }} {{ commit.author }} {% for co in commit.co_authors %} + {{ co }} {% endfor %}
{{ commit.subject }}
{% if commit.body %}
{{ commit.body }}
{% endif %} {% if commit.features %} {% endif %}
{% endfor %}
{% endfor %} {% else %}

No git history available

Changelog is generated from git commits. Make sure the project is in a git repository.

{% endif %} {% endblock %}