{% extends "base.html" %} {% block content %}

Blame

{% if entries %}
{% for e in entries %} {% endfor %}
Line Type Author Date Content
{{ e.line_number }} {% if e.change_type == "created" %} add {% elif e.change_type == "modified" %} mod {% elif e.change_type == "deleted" %} del {% else %} - {% endif %} {% if e.actor == 'agent' %} agent {% elif e.actor == 'user' %} user {% elif e.actor == 'deleted' %} deleted {% else %} unknown {% endif %} {{ (e.timestamp or "")[:10] }} {{ e.text }}
{% elif file_path %}

No blame information available for {{ file_path }}.

The file may not exist or has no change history.

{% else %}

Enter a file path above to view line-level attribution.

{% endif %}
{% endblock %}