{% extends "base.html" %} {% block style %} {% endblock style %} {% load static %} {% load custom_tags %} {% block title %} OWASP {% env 'PROJECT_NAME' %} - User Statistics {% endblock %} {% block description %} View user statistics for contributions, including commits, opened/closed issues, PRs, and comments for a selected time period. {% endblock %} {% block keywords %} user statistics, OWASP {% env 'PROJECT_NAME' %}, commits, issues, PRs, contributions {% endblock %} {% block og_title %} OWASP {% env 'PROJECT_NAME' %} - User Statistics {% endblock %} {% block og_description %} Explore the statistics for contributors in the OWASP {% env 'PROJECT_NAME' %} project, showcasing activity like commits, issues, and pull requests. {% endblock %} {% block content %} {% include "includes/sidenav.html" %}
Daily Weekly Yearly
Showing contributions from {{ start_date }} to {{ end_date }}
{% for username, stats in user_stats.items %} {% endfor %}
Username Commits Issues Opened Issues Closed PRs Comments Total
{{ username }} {{ stats.commits }} {{ stats.issues_opened }} {{ stats.issues_closed }} {{ stats.prs }} {{ stats.comments }} {{ stats.total }}
{% endblock content %} {% block scripts %} {% endblock scripts %}