{% extends "base.html" %} {% block title %}Files — {{ project.name }} — Fossilrepo{% endblock %} {% block content %}

{{ project.name }}

{% include "fossil/_project_nav.html" %}

Unversioned Files

{% if files %}
{% for file in files %} {% endfor %}
Name Size Modified
{{ file.name }} {{ file.size|filesizeformat }} {% if file.mtime %}{{ file.mtime|date:"Y-m-d H:i" }}{% else %}--{% endif %} Download
{% else %}

{% if search %}No files matching "{{ search }}".{% else %}No unversioned files.{% endif %}

{% endif %} {% include "includes/_pagination_manual.html" %}
{% if has_admin %}
{% csrf_token %}

Upload File

Unversioned files do not preserve history. Only the latest version is kept.

{% endif %} {% endblock %}