{% from "/shared/macros.html" import tree_ish_select with context %} {% extends "/shared/base.html" %} {% block title %}{{ repo_dir }}/{{ repo_name }}{% endblock %} {% block title2 %}Commits{% endblock %} {% block header_one %}{{ repo_dir }} / {{ repo_name }}{% endblock %} {% block main %}
{{ tree_ish_select('.repo_commit_log', 'tree-ish-select', "Branch/Tree", head, curr_tree_ish, branches, tags) }}
{% if logs|length == 0 %}

No Commits Found

{% else %} {% for log in logs -%} {% endfor -%}
{{ log.subject|truncate(55) }}
{{ log.author_email|truncate(12) }} {{ log.commit_date.strftime("%Y-%m-%d") }}
{{ log.commit_hash|truncate(10) }} {{ macros.feather_img('code') }}

{% if last_commit_hash %} Next {% endif %}
{% endif %}
{% endblock %}