fixed implementation of UGC content uploader

This commit is contained in:
JakeBreath
2026-08-03 18:57:39 -05:00
parent 39e31d3980
commit 473b3c811b
40 changed files with 4137 additions and 87 deletions
@@ -0,0 +1,17 @@
{% extends 'base.html' %}
{% block title %}Delete {{ project.title }} - Packs Site{% endblock %}
{% block content %}
<div class="card">
<h1><i class="fas fa-trash"></i> Delete {{ project.title }}?</h1>
<p class="empty-hint">This permanently deletes the project, all its versions and gallery media. This cannot be undone.</p>
<form method="post">
{% csrf_token %}
<div class="form-actions">
<a href="{% url 'library:project_detail' project.slug %}" class="btn btn-secondary">Cancel</a>
<button type="submit" class="btn btn-danger"><i class="fas fa-trash"></i> Delete project</button>
</div>
</form>
</div>
{% endblock %}