{% extends 'layout_page.twig' %} {% set page = 'commits' %} {% block title %}P3X GitList{% endblock %} {% block content %}

Loading a big commit ...
{% embed 'breadcrumb.twig' with {breadcrumbs: [{dir: "Commit #{commit.hash}", path:''}]} %} {% block right %} Browse code {% endblock %} {% endembed %}

{{ commit.message }} {% if commit.body is not empty %} {{ commit.body | nl2br }} {% endif %}

{{ commit.author.name }} authored on {{ commit.date | format_date }} {% if commit.author.email != commit.commiter.email %} • {{ commit.commiter.name }} committed on {{ commit.commiterDate | format_date }} {% endif %}
Showing {{ commit.changedFiles }} changed files
{% for diff in commit.diffs %}
 History    View file @ {{ commit.shortHash }}
{{ diff.file }}
Click to load this diff ...
{% endfor %} {% endblock %}