{% extends "base.html" %} {% block title %}{{ name }} - Project Detail{% endblock %} {% block content %}

📦 {{ name }}

{% if project.error %}

Error: {{ project.error }}

{% else %}

Repository Info

Path: {{ project.path }}

Branch: {{ project.branch or 'N/A' }}

Status: {{ project.status }}

{% if project.gitea_repo %}

Gitea: {{ project.gitea_repo }} ↗

{% endif %}

Latest Commit

{% if project.commit_hash %}

Hash: {{ project.commit_hash }}

Message: {{ project.commit_msg }}

Time: {% if project.commit_time %}{{ project.commit_time|int|dt }} ({{ project.commit_time|int|rel }}){% else %}N/A{% endif %}

{% else %}

No commits found

{% endif %}

Git Status

{% if project.status_porcelain %}
{{ project.status_porcelain }}
{% else %}

Clean working directory

{% endif %}
{% if project.diff_stat %}

Last Commit Diff Stat

{{ project.diff_stat }}
{% endif %}

Recent Commits (last 10)

{% if project.recent_commits %}
{% for commit in project.recent_commits %}{{ commit }}
{% endfor %}
{% else %}

No commits found

{% endif %}
{% endif %}

← Back to Projects

{% endblock %}