{% extends "base.html" %} {% block content %}
{% include "partials/repo_heading.html" %}
Branch: {{ current_branch }}
{% set repo_tab = "files" %} {% set repo_tab_label = "Commits" %} {% include "partials/repo_tabs.html" %}
{% include "partials/repo_clone_url.html" %}
Commits
Branch: {{ current_branch }}
{% if path_filter %}
File: {{ path_filter }} Clear
{% endif %} {% if empty_repo or page.results | length == 0 %}

No commits yet.

{% else %}
{% for commit in page.results %} {% endfor %}
Commit Author Date
{{ commit.author }} {{ commit.committed_at | humantime }}
{% endif %}
{% with page=page, query=query, per_page_id="repo-commit-per-page", per_page_form="repo-commit-filters" %} {% include "partials/paging_footer.html" %} {% endwith %}
{% endblock %} {% block scripts %} {% endblock %}