{% extends "repo.html" %} {% set active_page = "log" %} {% block title %} {% trans username=username, repository=repository %}History of {{ username }}/{{ repository }}{% endtrans %} {% endblock %} {% block content %} {% for commit in commits %}
{% if "@" not in commit.owner_name %} {% else %} {# Load a placeholder for foreign users #} {% endif %}

{{ commit.message | split("\n") | first }}

{% trans owner_name=commit.owner_name, profile_url=owner_name | profile_url %}by {{ owner_name }},{% endtrans %} {{ commit.author_date|strftime("%A, %e %B %Y, %H:%M:%S") }}

{% trans pusher_name=commit.pusher_name, profile_url=pusher_name | profile_url %}pushed by {{ pusher_name }},{% endtrans %} {{ commit.receive_date|strftime("%A, %e %B %Y, %H:%M:%S") }}

{{ commit.sha }}
{% trans %}View tree{% endtrans %}
{% endfor %} {% include "pagination.html" %}
{% endblock %}