{% extends 'allura:templates/repo/repo_master.html' %} {% set graph_x_space = 10 %} {% set graph_y_space = 20 %} {% set point_offset = 5 %} {% block title %} {{c.project.name}} / {{c.app.config.options.mount_label}} / Browse Commits {% endblock %} {% block header -%} Browse Commits {%- endblock %} {% block content %} {{ clone_info(c.app.repo) }} {% if status == 'no_commits' %}

No commits to display.

{% elif status == 'too_many_commits' %}

The commit browser is currently only available for projects with less than 2,000 commits.

{% elif status == 'not_ready' %}

You must wait for the repository to be fully analyzed.

{% else %} {{ c.commit_browser_widget.display() }} {% endif %} {% endblock %}