{% extends 'base.html' %} {% block title %}Commit {{commit.sha1}}{% endblock %} {% block content %}

Commit Details

back to {{commit.project.name}}

SHA1{{commit.sha1}}
Author{{commit.author_name}} <{{commit.author_email}}>
Branch{{commit.branch}}
Date{{commit.author_date}}
Status{{commit.status}}
Notes

{{commit.message}}

Checkout command
{% if commit.status in ('committed','tested') %} {% if user.has_project_role(commit.project, 'reviewer') %}
{% endif %} {% if user.has_project_role(commit.project, 'approver') or user.has_project_role(commit.project, 'reviewer') %}
{% endif %} {% elif commit.status == 'reviewed' %} {% if user.has_project_role(commit.project, 'approver') %}
{% endif %} {% if user.has_project_role(commit.project, 'approver') or user.has_project_role(commit.project, 'reviewer') %}
{% endif %} {% elif commit.status == 'rejected' %} {% if user.has_project_role(commit.project, 'approver') or user.has_project_role(commit.project, 'reviewer') %}
{% endif %} {% endif %}

Comments

{% for l in commit.logs %}

At {{l.created}} {% if l.user %}{{l.user.name}} said:{% else %}System message:{% endif %}

{{l.message}}
{% endfor %}
{% endblock %}