{% extends "base.html" %} {% load humanize %} {% load static %} {% block title %} Project List {% endblock title %} {% block content %}
{% include "includes/sidenav.html" %}

Total Projects

{{ total_projects }}

Total Repositories

{{ total_repos }}

{% if filtered_count is not None %}

Filtered Results

{{ filtered_count }}

{% endif %} {% if user.is_authenticated %} {% else %} {% endif %}

Filter Projects

{% for project, repos in projects.items %}
{% if project.slug %} {{ project.name }} {% else %}
{{ project.name|slice:":1"|upper }}
{% endif %}
{% for repo in repos %}

{{ repo.name }}

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

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

{{ repo.stars }}
🍴 {{ repo.forks }}
🐛 {{ repo.open_issues }}
👥 {{ repo.contributor_count }}
Updated {{ repo.last_updated|date:"M d, Y" }} View Repository
{% endfor %}
{% empty %}

No projects found matching your criteria.

{% endfor %}
{% if is_paginated %}
{% endif %}
{% endblock content %}