{% extends "repo.html" %} {% import "utils.html" as utils with context %} {% block title %} {{repo.owner.canonical_name}}/{{repo.name}}: {% if path != [''] %}{{path_join(*path)}} {% endif %}{{ ref.decode("utf-8", "replace") }} - {{cfg("sr.ht", "site-name")}} git {% endblock %} {% block repohead %} {% endblock %} {% block tabs_extra %}
  • {% endblock %} {% block content %} {% if path != [''] %}
    {{ utils.breadcrumb(ref, repo, path, entry, view, path_join, stat, pygit2, humanize) }}
    {% endif %}
    {% set full_path = path_join(*path) %} {% for c in commits %}
    {{ utils.commit_event(repo, c, True, refs, path=full_path, lookup=authors.get) }}
    {% else %}
    No commits{% if path != [''] %} for this path{% endif %}.
    {% endfor %}
    {% if commits and has_more %} Next {{icon("caret-right")}} {% endif %}
    {% endblock %}