{% extends "repo_master.html" %} {% block title %}Tree - {{ repo.namespace + '/' if repo.namespace }}{{ repo.name }}{% endblock %} {% set tag = "home" %} {% block repo %}

Blame {{ filename }}

{% if repo.is_fork %} {{ repo.user.user }}/{{ repo.name }} {% else %} {{ repo.name }} {% endif %}
{% if branchname %}
{% endif %}
{% if content %}
{% if output_type in ('file','markup') and g.repo_admin %} Edit {% endif %} {% if output_type in ('file','markup') %}
{{ forkbuttonform.csrf_token }}
{% endif %} {% if output_type == 'markup' %} Text {% else %} Blob {% endif %} Raw
{% autoescape false %} {{ content | blame_loc(repo, username, blame) }} {% endautoescape %}
{% else %} No content found in this repository {% endif %}
{% if readme %}
README{{readme_ext}}
{% if safe %} {{ readme | noJS |safe }} {% else %} {{ readme | noJS }} {% endif %}
{% endif %} {% endblock %} {% block jscripts %} {{ super() }} {% endblock %}