{% extends "repo_master.html" %} {% block title %}{{ select.capitalize() }} - {{ repo.namespace + '/' if repo.namespace }}{{ repo.name }}{% endblock %} {% set tag = "home" %} {% block repo %}
{% if g.repo_obj and g.repo_obj.is_empty %}
{% else %}

Commits {{number_of_commits}}

{% if repo.is_fork %} {{ repo.user.user }}/{{ repo.name }} {% else %} {{ repo.name }} {% endif %}
{% if branchname %}
{% endif %}
{% if diff_commits|count > 0 %} {% endif %}
{% for commit in last_commits %} {% if diff_commits and commit.oid.hex in diff_commits %}
{% endif %}
{{ commit.message.split('\n')[0] }}
{{ commit.commit_time|humanize }}
{{ commit.author | author2avatar(20) | safe }} {{ commit.author.name }}
{{ commit.hex|short }}
{% endfor %}
{% if total_page %} {% endif %} {% endif %} {% endblock %} {% block jscripts %} {{ super() }} {% endblock %}