{% extends "projector/project/detail.html" %} {% load i18n %} {% load markup %} {% load native %} {% load projector_tags %} {% load richtemplates_tags %} {% block col-single-extra %}
{% trans "Project's repository browser" %}
{% block repository-menu %} {% endblock %} {% block browse-content %}
{% block browse-content-info %} {% load breadcrumber %}
{% path_breadcrumbs request.META.PATH_INFO 3 %}
{% block changeset-message %} {% if changeset %}
  • {% trans "Committed by" %} {{ changeset.author|hide_email }} {{ changeset.date|timesince }} {% trans "ago" %}

    {{ changeset.message }}
{% endif %} {% endblock %}
{% if root.is_file %} {% endif %}
{% trans "Path" %} {{ root.path|default:"/"|slice:"20" }}{% if root.path|length > 20 %}...{% endif %}
{% trans "Revision" %} {{ root.changeset.revision }}:{{ root.changeset.raw_id }}
{% trans "Last committer" %} {{ root.last_changeset.author|hide_email|tooltip:"80" }}
{% trans "Last modified" %} {{ root.last_changeset.date|timesince }}
{% trans "Size" %} {% if root.is_file %}{{ root.size|filesizeformat }}{% endif %}
{% trans "Mimetype" %} {{ root.mimetype }}
{% trans "Download" %} {% trans "raw file" %}
{% trans "Annotate" %} {% trans "annotate" %}
{# history #} {% if root.is_file %}

{% trans "History" %}

{% endif %} {# end history #}
{% endblock %} {% if root.is_dir %} {% if root.parent %} {% endif %} {% for node in root.nodes %} {% if node.is_dir %} {% else %} {% endif %} {% endfor %}
{% trans "Name" %} {% trans "Size" %} {% trans "Revision" %} {% trans "Last modified" %} {% trans "Last committer" %}
..
{{ node.name }} {% if node.is_file %}{{ node.size|filesizeformat }}{% endif %} {{ node.last_changeset.revision }} {{ node.last_changeset.date|timesince }} {% trans "ago" %} {{ node.last_changeset.author|hide_email|tooltip:"20" }}
{% endif %} {% if root.is_file %} {% if root.is_binary %}
  • {% trans "This is binary file" %}
{% else %}
{% highlight root.content root.lexer_alias linenos=true anchorlinenos=true lineanchors=line cssclass="code-highlight" %}
{% endif %} {% endif %}
{% endblock %}
{% if readme_node and readme_node.content %}
{{ readme_node }}
{% highlight readme_node.content readme_node.lexer_alias linenos=true anchorlinenos=true lineanchors=line cssclass="code-highlight" %}
{% endif %} {% endblock %}