{% extends "base.html" %}{% block title %}Repozytoria Git{% endblock %} {% block head %} {% endblock %} {% block content %}
{{ repo_count }}
{{ t('repo_count_label') }}
{{ public_count }}
{{ t('public_label') }}
{{ private_count }}
{{ t('private_label') }}
{{ total_commits }}
{{ t('commits_label') }}
{{ total_size }}
{{ t('data_label') }}

{{ t('git_title') }}

Pomoc {% if is_admin %} Nowe repo{% endif %}
{% if repos %}

{{ t('recent_activity') }}

{% if activity %} {% for a in activity|reverse %}
{{ a.hash }} {{ a.msg[:70] }}
{{ a.author }} · {{ a.date }} · {{ a.repo }}
{% endfor %} {% else %}

{{ t('no_activity') }}

{% endif %}
{% for r in repos %}
{{ r.name }} {{ ' public' if r.visible else ' private' }}
{{ r.desc }}
{{ r.commits }} commits {{ r.branch_count }} gałęzi {{ r.size_fmt }} {% if r.open_issues > 0 %} {{ r.open_issues }} open{% endif %} {% if r.last_commit %}⏱ {{ r.last_commit }}{% endif %}
git clone https://git.paganlinux.eu/{{ r.name }}.git
Przeglądaj {% if is_admin %}{% endif %}
{% endfor %}
{% else %}

Brak repozytoriów.

{% if is_admin %}{{ t('create_first') }}{% endif %}
{% endif %} {% endblock %}