{% extends "layouts/default.html" %} {% load gravatar %} {% load vcs %} {% block content %}

Commit Log

Branches: {% for commit in log %} {% endfor %}
Commit Date Author Commit Message
{{ commit.authored_date }} {{ commit.author }} {% for branch, c in repo.branches.items %} {% if commit.id == c.id %} {{ branch }} {% endif %} {% endfor %} {% for tag, c in repo.tags.items %} {% if commit.id == c.id %} {{ tag }} {% endif %} {% endfor %} {{ commit.message|oneline }}
{% if older %} Older {% endif %} {% if offset and older %} · {% endif %} {% if offset %} Newer {% endif %}
{% endblock %}