{% extends "repo_master.html" %} {% block title %}File history - {{ repo.fullname }}{% endblock %} {% set tag = "home" %} {% block header %} {% endblock %} {% block repo %}

History {{ filename }}

{% if branchname %}
{% endif %}
{% if log %}
{% for line in log %} {% set commit = g.repo_obj[line[0]] %}
{{ 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 %}
{% else %} No history found for this file in this repository {% endif %}
{% endblock %} {% block jscripts %} {{ super() }} {% endblock %}