{% extends "base.html" %} {% block title %}Statistics — {{ project.name }} — Fossilrepo{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ project.name }}

{% include "fossil/_project_nav.html" %}
{{ stats.checkin_count|default:"0" }}
Checkins
{{ stats.contributors|default:"0" }}
Contributors
{{ stats.total_artifacts|default:"0" }}
Artifacts
{{ stats.db_size_mb|default:"0" }} MB
Repository Size
{% if activity_json %}

Commit Activity (52 weeks)

{% endif %}

Event Breakdown

Checkins {{ stats.checkin_count|default:"0" }}
Wiki edits {{ stats.wiki_events|default:"0" }}
Ticket changes {{ stats.ticket_events|default:"0" }}
Forum posts {{ stats.forum_events|default:"0" }}
{% if stats.first_checkin %}
First checkin {{ stats.first_checkin|date:"Y-m-d" }}
{% endif %} {% if stats.last_checkin %}
Last checkin {{ stats.last_checkin|date:"Y-m-d" }}
{% endif %}

Top Contributors

{% for c in top_contributors %} {{ c.user }}
{{ c.count }}
{% endfor %}
{% if activity_json %} {% endif %} {% endblock %}