{% extends "repo_master.html" %}
{% block title %}{{ select.capitalize() }} - {{ repo.name }}{% endblock %}
{% set tag = "home" %}
{% block repo %}
{% if repo_obj and repo_obj.is_empty %}
This repo is brand new!
There are no commits to this project yet
{% else %}
Commits {{number_of_commits}}
Displaying {{number_of_commits}} commits in
{% if repo.is_fork %}
{% else %}
{% endif %}
{{ repo.fullname }}
{{branchname}}
{% if diff_commits|count > 0 %}
This branch contains
{{ diff_commits|count }} commits not in
{% if repo.is_fork %}
the upstream project
{{ repo.name }}
{% else %}
the main branch
{% endif %}
{{head}}
{% if diff_commits and authenticated and
(repo.is_fork or repo.settings.get('pull_requests', True)) %}