{% extends "base.html" %} {% load humanize %} {% load static %} {% load custom_filters %} {% block title %} {{ repo.name }} - Repo Details {% endblock title %} {% block extra_head %} {{ block.super }} {% endblock extra_head %} {% block content %} {% include "includes/sidenav.html" %}
{% if repo.logo_url %} {{ repo.name }} logo {% endif %}

{{ repo.name }}

{% if repo.project %} Part of {{ repo.project.name }} {% if repo.project.organization %} {{ repo.project.organization.name }} {% endif %} {% endif %}

{{ repo.description|default:"No description available." }}

{% if repo.homepage_url %} Visit Homepage {% endif %} View on GitHub

Repository View Count Badge

HTML:

AI Summary

{% if repo.ai_summary %} {{ repo.ai_summary }} {% else %}

AI summary unavailable for this repo.

{% endif %}
{% if repo.is_main %} Main Repository {% elif repo.is_wiki %} Wiki Repository {% else %} Standard Repository {% endif %} {% if repo.is_archived %} Archived {% endif %}
Tags:
{% for tag in repo.tags.all %} {{ tag.name }} {% endfor %}
Created {{ repo.created|date:"M d, Y" }}
Updated {{ repo.last_updated|naturaltime }}
Stars

{{ repo.stars|intcomma }}

Forks

{{ repo.forks|intcomma }}

Watchers

{{ repo.watchers|intcomma }}

Network

{{ repo.network_count|intcomma }}

Subscribers

{{ repo.subscribers_count|intcomma }}

Activity Metrics

Issues

Open {{ repo.open_issues|intcomma }}
Closed {{ repo.closed_issues|intcomma }}
Total {{ repo.total_issues|intcomma }}

Pull Requests

{{ repo.open_pull_requests|intcomma }}
Open PRs

Commits

{{ repo.commit_count|intcomma }}
Total Commits
Last: {{ repo.last_commit_date|date:"M d, Y" }}
{% if show_repo_stats %}

{{ repo.contributor_count|intcomma }} Contributions in the Last 30 Days

Opened/Closed Issue Ratio

{{ issue_ratio_change|floatformat:2 }} ({{ issue_ratio_percentage_change|floatformat:2 }}%)

{% if issue_ratio_change >= 0 %} {% else %} {% endif %} past month

{{ repo.open_pull_requests|intcomma }}

Pull Requests Opened

{{ pr_change|intcomma }} ({{ pr_percentage_change|floatformat:2 }}%)

{% if pr_change >= 0 %} {% else %} {% endif %} past month

{{ repo.commit_count|intcomma }}

Commits

{{ commit_change|intcomma }} ({{ commit_percentage_change|floatformat:2 }}%)

{% if commit_change >= 0 %} {% else %} {% endif %} past month

Issues

Pull Requests

Pushes & Commits

{% endif %}

Community

Top Contributors

{{ repo.contributor_count|intcomma }} total contributors
{% for contributor in top_contributors %}
{{ contributor.name }}
{{ contributor.name }} {% if contributor.verified %}{% endif %}
{{ contributor.contributions|intcomma }} commits
{% endfor %}
{% if repo.contributor_count > 6 %}
{% for contributor in repo.contributor.all|dictsortreversed:"contributions"|slice:"6:11" %} {{ contributor.name }} {% endfor %} {% if repo.contributor_count > 11 %}
+{{ repo.contributor_count|add:"-11" }}
{% endif %}
View all contributors
{% endif %}

Contributor Statistics

{% for stat in contributor_stats %} {% empty %} {% endfor %}
Contributor Commits Issues Opened Issues Closed Pull Requests Comments Total Impact
{{ stat.contributor.name }}
{{ stat.contributor.name }}
@{{ stat.contributor.github_id }}
{{ stat.commits|default:0|intcomma }} {{ stat.issues_opened|default:0|intcomma }} {{ stat.issues_closed|default:0|intcomma }} {{ stat.pull_requests|default:0|intcomma }} {{ stat.comments|default:0|intcomma }}
{{ stat.impact_level.text }}
No contributor statistics available for this period
{% if is_paginated %}

Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ paginator.count }} contributors

{% endif %}

Technical Overview

Language & Stack

Primary Language: {{ repo.primary_language|default:"Not specified" }}
Repository Size: {{ repo.size|filesizeformat }}
License:
{{ repo.license|default:"Not specified" }}

Latest Release

{% if repo.release_name or repo.release_datetime %}
{% if repo.release_name %}
Version {{ repo.release_name }}
{% endif %} {% if repo.release_datetime %}
Release Date {{ repo.release_datetime|date:"M d, Y" }}
{% endif %}
Last Commit {{ repo.last_commit_date|date:"M d, Y" }}
{% else %}
No release information available
{% endif %}

Milestones

{% if milestones %} {% for milestone in milestones %}

{{ milestone.title }}

{{ milestone.created_at|slice:":10" }}
{{ milestone.state|title }}
{% with total_issues=milestone.open_issues|add:milestone.closed_issues %} {% if total_issues > 0 %} {% widthratio milestone.closed_issues total_issues 100 as percentage %}
{{ percentage }}%
{% else %}
0%
{% endif %} {% endwith %}
{{ milestone.open_issues }} open / {{ milestone.closed_issues }} closed
View on GitHub
{% if milestone.due_on %}
Due: {{ milestone.due_on|slice:":10" }}
{% endif %}
{% endfor %} {% if milestone_pagination.total_pages > 1 %}

Showing milestone page {{ milestone_pagination.current_page }} of {{ milestone_pagination.total_pages }}

{% endif %} {% else %}

No milestones found for this repository.

{% endif %}

GitHub Issues & Pull Requests

Open Issues

{{ github_issues_count }}

Pull Requests

{{ github_prs_count }}

Bounty Issues

{{ dollar_tag_issues_count }}

Issues

View All
{% if github_issues %}
{% for issue in github_issues %}
{{ issue.title }}
#{{ issue.issue_id }} opened {{ issue.created_at|date:"M d, Y" }}
{% if issue.has_dollar_tag %} $ Bounty {% endif %}
{% endfor %}
{% else %}

No issues found for this repository.

{% endif %}

Pull Requests

View All
{% if github_prs %}
{% for pr in github_prs %}
{{ pr.title }}
#{{ pr.issue_id }} opened {{ pr.created_at|date:"M d, Y" }} {% if pr.is_merged %} Merged {% elif pr.state == 'closed' %} Closed {% endif %}
{% endfor %}
{% else %}

No pull requests found for this repository.

{% endif %}
{% if dollar_tag_issues %}

Issues with Bounties

View All
{% for issue in dollar_tag_issues %}
{{ issue.title }}
#{{ issue.issue_id }} opened {{ issue.created_at|date:"M d, Y" }}
$ Bounty
{% endfor %}
{% endif %}
Last updated: {{ repo.last_updated|date:"M d, Y H:i" }}
{% endblock content %} {% block after_js %} {{ block.super }} {% endblock after_js %}