{% extends "projector/project/repository/browse.html" %} {% load i18n %} {% load gravatar_tags %} {% load richtemplates_tags %} {% load pagination_tags %} {% load projector_tags %} {% if root.is_file %} {% block head-css %}{{ block.super }} {% endblock %} {% endif %} {% block info-block %}
{% trans "Node's information" %}
{% trans "Changesets count" %} {{ repository.revisions|length }}
{% endblock %} {% block col-single-extra %}
{% trans "Project's repository browser" %}
{% block repository-menu %}{{ block.super }}{% endblock %} {% autopaginate repository CHANGESETS_PAGINATE_BY %} {% paginate %} {% for changeset in repository %} {% endfor %}
{% trans "Revision" %} {% trans "Differences" %} {% trans "Commited at" %} {% trans "Author" %} {% trans "Message" %}
{{ changeset }}
  • {{ changeset.added|length }}
  • {{ changeset.changed|length }}
  • {{ changeset.removed|length }}
{% trans "Show diff" %}
{{ changeset.date|timesince }} {% trans "ago" %} {% fetch_user changeset.author as "author" %} {% if author %} {% trans {{ author.username|tooltip:"15" }} {% else %} {{ changeset.author|hide_email|tooltip:"15" }} {% endif %} {{ changeset.message|tooltip:"90" }}
{% paginate %}
{% endblock %}