{% extends "svnlit/base.html" %} {% load timesince %} {% block title %}{{ repository.label }}{{ node.path }}{% endblock %} {% block content %}

{% include "svnlit/node_path.html" %}

{% block node_content %}{% endblock %} {% if node.has_properties %} {% endif %} {% if node.is_file %}
download ({{ node.size|filesizeformat }})
{% endif %}

{{ changeset }}

| {% with node.get_last_changeset as last_changeset %} {% with last_changeset.get_previous as previous_changeset %} {% if node.is_file and previous_changeset %} diff | {% endif %} {% endwith %} Revision list | Last changed in {{ last_changeset }} by {{ last_changeset.author }} {{ last_changeset.date|timesince }} {% endwith %}

{% if repository.uri %}

svn {% if node.is_directory %}co{% else %}cat{% endif %} {% ifnotequal repository.get_latest_revision revision %} -r {{ revision }} {% endifnotequal %} {{ repository.uri }}{{ node.path }} {% if node.is_file %}> {{ node.get_basename }}{% endif %}

{% endif %}
{% endblock %}