{% extends "base.html" %} {% block content %} {% set from_page = request.query_params.get("from", "") %} {% set from_labels = {"mrs": "Merge Requests", "issues": "Issues", "pipelines": "Pipelines", "vulns": "Vulnerabilities", "events": "Events"} %}
{% if repo %}
{{ repo.branch or "detached" }}
{% if repo.stale %}stale{% endif %}
{% if repo.ahead %}↑{{ repo.ahead }}{% endif %}
{% if repo.behind %}↓{{ repo.behind }}{% endif %}
{% if repo.pull_status == "conflict" %}⚠ conflict{% endif %}
{% if repo.remote_url %}— GitLab ↗{% endif %}
{% if repo.default_ahead %}↑{{ repo.default_ahead }}{% endif %}
{% if repo.default_behind %}↓{{ repo.default_behind }}{% endif %}
from {{ repo.default_branch }}
Repo {{ repo_name }} not found.
{% endif %} {% endblock %}