{% 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 %}
{% if readme %}
{% if safe %} {{ readme | noJS |safe }} {% else %} {{ readme | noJS }} {% endif %}
{% else %}
The {{repo.name}} project has not checked in a README file yet
{% endif %}
{% endif %}
Owners
Branches
{% if head %}
{% if branchname == head %} {{ head }} {% else %} {{ head }} {% endif %}
{% endif %} {% for branch in g.branches if branch != head%}
{% if branchname != branch %} {{ branch }} {% else %} {{ branch }} {% endif %}
{% if g.repo_admin and branch != head %}
{{ form.csrf_token }}
{% endif %}
{% endfor %}
Source GIT URLs{% if (authenticated and g.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 g.repo_admin %}
SSH
{% endif %}
GIT
{% endif %} {% if authenticated and g.repo_admin %} {% if config.get('ENABLE_TICKETS', True) and repo.settings.get('issue_tracker', True) %}
Issues GIT URLs
SSH
{% endif %}
Pull Requests GIT URLs
SSH
{% endif %}
created {{repo.date_created|humanize}}
{% if last_commits %}
{% endif %}
{% endblock %} {% block jscripts %} {{ super() }} {% endblock %}