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

{{ project.name }}

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

Shunned Artifacts

Irreversible Operation

Shunning permanently removes an artifact from the repository. This cannot be undone. Shunned artifacts are expunged from the database and will not be recovered through sync. Use this for spam, accidentally committed secrets, or legal compliance.

Shun an Artifact

{% csrf_token %}
{% if shunned %}

Currently Shunned ({{ shunned|length }})

{% for uuid in shunned %}
{{ uuid }}
{% endfor %}
{% else %}

No artifacts have been shunned in this repository.

{% endif %} {% endblock %}