{% extends 'layout_page.twig' %} {% set page = 'commits' %} {% block title %}GitList{% endblock %} {% block content %} {% include 'breadcrumb.twig' with {breadcrumbs: [{dir: "Commit #{commit.getHash}", path:''}]} %}
Browse code

{{ commit.getMessage }}

{{ commit.getAuthor.getName }} authored in {{ commit.getDate | date('d/m/Y \\a\\t H:i:s') }}
Showing {{ commit.getChangedFiles }} changed files
{% for diff in commit.getDiffs %}
{% for line in diff.getLines %} {{ line.getLine }} {% endfor %}
{% endfor %}
{% endblock %}