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

Commits {{number_of_commits}}

Displaying {{number_of_commits}} commits in {% if repo.is_fork %} {% else %} {% endif %}{{ repo.fullname }} {{branchname}}
{% 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 %}
{% endif %} {% if total_page %} {% endif %} {% endif %} {% if origin == 'view_repo' or origin == 'view_repo_branch' %} {% if readme %}
{% if safe %} {{ readme | noJS |safe }} {% else %} {{ readme | noJS }} {% endif %}
{% endif %} {% if readme or (repo_obj and repo_obj.is_empty) %}
{% else %}
{% endif %}
Owners
Branches
{% if head %}
{% if branchname == head %} {{ head }} {% else %} {{ head }} {% endif %}
{% endif %} {% for branch in branches if branch != head%}
{% if branchname != branch %} {{ branch }} {% else %} {{ branch }} {% endif %}
{% if repo_admin and branch != head %}
{{ form.csrf_token }}
{% endif %}
{% endfor %}
Source GIT URLs{% if (authenticated and repo_admin) or (config['DOC_APP_URL'] and repo and repo.settings.get('project_documentation', True)) %} {%endif%}
SSH
GIT
{% if config['DOC_APP_URL'] and repo and repo.settings.get('project_documentation', True) %}
Docs GIT URLs
{% if authenticated and repo_admin %}
SSH
{% endif %}
GIT
{% endif %} {% if authenticated and repo_admin %} {% if config.get('ENABLE_TICKETS', True) %}
Issues GIT URLs
SSH
{% endif %}
Pull Requests GIT URLs
SSH
{% endif %}
created {{repo.date_created|humanize}}
{% if last_commits %}
{% endif %}
{% endif %}
{% endblock %} {% block jscripts %} {{ super() }} {% if origin == 'view_commits' %} {% endif %} {% endblock %}