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

{{ project.name }}

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

Repository Info

Filename
{{ fossil_repo.filename }}
{% if repo_info.file_size %}
File size
{{ repo_info.file_size|filesizeformat }}
{% endif %} {% if repo_info.project_code %}
Project code
{{ repo_info.project_code }}
{% endif %} {% if repo_info.checkin_count is not None %}
Checkins
{{ repo_info.checkin_count|default:"0" }}
{% endif %} {% if repo_info.ticket_count is not None %}
Tickets
{{ repo_info.ticket_count|default:"0" }}
{% endif %} {% if repo_info.wiki_page_count is not None %}
Wiki pages
{{ repo_info.wiki_page_count|default:"0" }}
{% endif %} {% if fossil_repo.last_sync_at %}
Last synced
{{ fossil_repo.last_sync_at|timesince }} ago
{% endif %} {% if repo_info.file_path %}
File path
{{ repo_info.file_path }}
{% endif %} {% if not repo_info.exists_on_disk %}

Repository file not found on disk.

{% endif %}

Remote

{% csrf_token %}

Upstream Fossil server URL for sync operations

Clone URLs

Use these URLs to clone this repository with fossil clone.

Actions

{% csrf_token %}
{% if fossil_repo.remote_url %}
{% csrf_token %}
{% endif %}

Management

Danger Zone

Destructive operations that cannot be undone.

Delete this repository

Permanently removes the .fossil file and all associated data.

{% endblock %}