{% extends "base.html" %} {% block title %}{{ _("Commit") }}: {{ commit.revision }}{% end block %} {% block body %}
{% if commit.message %} {% end %}
{{ _("Revision") }} {{ commit.revision }}
{{ _("Date") }} {{ format_date(commit.date, full_format=True) }}
{{ _("Author") }} {% module LinkToUser(commit.author) %}
{{ _("Committer") }} {% module LinkToUser(commit.committer) %}
{% module CommitMessage(commit) %}
{% if source.gitweb %} {% end %} {% if current_user and current_user.is_admin() %} {% end %}

{{ _("Packages created from this commit") }}

{% if commit.packages %} {% for pkg in commit.packages %} {% end %}
{{ pkg.friendly_name }} {{ pkg.summary }}
{% else %}

{{ _("There were no packages created from this commit.") }}

{% end %}
{% end block %}