{% extends 'base.html' %} {% block title %}Commits{% endblock %} {% block content %}

Commits for {{project.name}}

back to projects

All Committed Reviewed Approved Merged Rejected Outdated
{% if statuses %}

Showing commits listed as {{statuses|join(', ')}}

{% else %}

Showing all commits

{% endif %} {% if commits.count() > 0 %} {% for c in commits %} {% endfor %}
Author Date Author Message Status Actions
{{c.author_date}} {{c.author_name}} {{c.message}} {{c.status}} View
{% else %}

No results

{% endif %} {% endblock %}