{% extends "repo_master.html" %} {% block title %}Commit - {{ repo.name }} - {{ commitid }}{% endblock %} {%block tag %}commit{% endblock %} {% block repo %} {% set splitted_message = commit.message.split('\n') %}
Author | {{ commit.author | author2user |safe }} - {{ commit.commit_time | format_ts}} |
---|---|
Committer | {{ commit.committer | author2user |safe }} - {{ commit.commit_time | format_ts }} |
Parent |
{% for parent in commit.parents %}
{{ parent.oid.hex }}
{% endfor %} |
Changes |
|
Binary diffs cannot be rendered.
{% else %} {% autoescape false %} {{ patch|patch_to_diff|html_diff}} {% endautoescape %} {% endif %}