{% extends "base.html" %} {% block content %}
Total tags
{{project.tags_count}}
{% for tag in project.tags %} {% if tag.created %} {% else %} {% endif %} {% endfor %}
NameDate*CommitsAuthors
{{tag.name}}{{ tag.created.strftime("%Y-%m-%d") }} - {{tag.commits_count}}
    {% for name, row in tag.contributors.iterrows() %}
  • {{ name }} ({{ row['commits_count'] }})
  • {% endfor %}

*Unannotated tags do not have creation date.

{% endblock %}