{% extends "repo_master.html" %} {% from "_render_repo.html" import pagination_link %} {% from "_projectstring.html" import projectstring, projecticon %} {% block title %}{{ select.capitalize() }} - {{ repo.namespace + '/' if repo.namespace }}{{ repo.name }}{% endblock %} {% set tag = "home" %} {% block repo %}
{% block overviewtabs %}{{ super() }}{% endblock %}
{% if g.repo_obj and g.repo_obj.is_empty %}
{% else %}

Commits {{number_of_commits}}

{% if branchname %}
{% endif %}
{% if diff_commits|count > 0 and head %} {% endif %}
{% for commit in last_commits %}
{% if diff_commits and commit.oid.hex in diff_commits %}
{% endif %}
{{ commit.message.split('\n')[0] }}
{{commit.author|author2user_commits( link=url_for('ui_ns.view_commits', repo=repo.name, branchname=branchname, username=username, namespace=repo.namespace, author=commit.author.email), cssclass="notblue")|safe}} • {{ commit.commit_time|humanize }}  
{% endfor %}
{{ pagination_link('page', g.page, total_page) }} {% endif %}
{% endblock %} {% block jscripts %} {{ super() }} {% endblock %}