{% extends "base.html" %} {% load humanize %} {% load static %} {% block title %} {{ project.name }} - Project Details {% endblock title %} {% block content %} {% include "includes/sidenav.html" %}
{% if project.organization %}
{% if project.organization.logo %} {{ project.organization.name }} {% else %}
{{ project.organization.name|slice:":1"|upper }}
{% endif %}
Organization

{{ project.organization.name }}

{% if project.organization.description %}

{{ project.organization.description }}

{% endif %}
{% else %}
Organization

This is an independent project not associated with any organization

{% endif %}
{% if project.logo %} {{ project.name }} {% else %}
{{ project.name|slice:":1"|upper }}
{% endif %}

{{ project.name }}

{{ project.description }}

{% if project.url %} Website {% endif %} {% if project.twitter %} Twitter {% endif %} {% if project.facebook %} Facebook {% endif %}
Total Stars
{{ repo_metrics.total_stars|default:"0"|intcomma }}
Total Forks
{{ repo_metrics.total_forks|default:"0"|intcomma }}
Total Issues
{{ repo_metrics.total_issues|default:"0"|intcomma }}
Contributors
{{ repo_metrics.total_contributors|default:"0"|intcomma }}
Total Commits
{{ repo_metrics.total_commits|default:"0"|intcomma }}
Open PRs
{{ repo_metrics.total_prs|default:"0"|intcomma }}

Project View Count Badge

HTML:

Associated Repositories

{% for repo in repositories %}

{{ repo.name }}

{% if repo.is_main %} Main {% elif repo.is_wiki %} Wiki {% endif %}
{% if repo.description %}

{{ repo.description }}

{% endif %}
{{ repo.stars|intcomma }}
🍴 {{ repo.forks|intcomma }}
🐛 {{ repo.open_issues|intcomma }}
👥 {{ repo.contributor_count|intcomma }}
{% if repo.primary_language %}
Primary Language: {{ repo.primary_language }}
{% endif %} {% if repo.license %}
License: {{ repo.license }}
{% endif %} {% if repo.last_commit_date %}
Last Commit: {{ repo.last_commit_date|date:"M d, Y" }}
{% endif %} {% if repo.release_name %}
Latest Release: {{ repo.release_name }} {% if repo.release_datetime %}({{ repo.release_datetime|date:"M d, Y" }}){% endif %}
{% endif %}
Updated {{ repo.last_updated|naturaltime }}
{% if repo.homepage_url %} Website {% endif %} View on GitHub
{% empty %}

No repositories found for this project.

{% endfor %}

Project Timeline on {{ site_name }}

Created: {{ created_date.full }} ({{ created_date.relative }})
Last Updated: {{ modified_date.full }} ({{ modified_date.relative }})
{% endblock content %} {% block after_js %} {% endblock after_js %}