Files
TimeTrack/templates/confirm_company_deletion.html
Jens Luedicke 9a79778ad6 Squashed commit of the following:
commit 1eeea9f83ad9230a5c1f7a75662770eaab0df837
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 21:15:41 2025 +0200

    Disable resuming of old time entries.

commit 3e3ec2f01cb7943622b819a19179388078ae1315
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 20:59:19 2025 +0200

    Refactor db migrations.

commit 15a51a569da36c6b7c9e01ab17b6fdbdee6ad994
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 19:58:04 2025 +0200

    Apply new style for Time Tracking view.

commit 77e5278b303e060d2b03853b06277f8aa567ae68
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 18:06:04 2025 +0200

    Allow direct registrations as a Company.

commit 188a8772757cbef374243d3a5f29e4440ddecabe
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 18:04:45 2025 +0200

    Add email invitation feature.

commit d9ebaa02aa01b518960a20dccdd5a327d82f30c6
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 17:12:32 2025 +0200

    Apply common style for Company, User, Team management pages.

commit 81149caf4d8fc6317e2ab1b4f022b32fc5aa6d22
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 16:44:32 2025 +0200

    Move export functions to own module.

commit 1a26e19338e73f8849c671471dd15cc3c1b1fe82
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 15:51:15 2025 +0200

    Split up models.py.

commit 61f1ccd10f721b0ff4dc1eccf30c7a1ee13f204d
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 12:05:28 2025 +0200

    Move utility function into own modules.

commit 84b341ed35e2c5387819a8b9f9d41eca900ae79f
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 11:44:24 2025 +0200

    Refactor auth functions use.

commit 923e311e3da5b26d85845c2832b73b7b17c48adb
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 11:35:52 2025 +0200

    Refactor route nameing and fix bugs along the way.

commit f0a5c4419c340e62a2615c60b2a9de28204d2995
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 10:34:33 2025 +0200

    Fix URL endpoints in announcement template.

commit b74d74542a1c8dc350749e4788a9464d067a88b5
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 09:25:53 2025 +0200

    Move announcements to own module.

commit 9563a28021ac46c82c04fe4649b394dbf96f92c7
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 09:16:30 2025 +0200

    Combine Company view and edit templates.

commit 6687c373e681d54e4deab6b2582fed5cea9aadf6
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 08:17:42 2025 +0200

    Move Users, Company and System Administration to own modules.

commit 8b7894a2e3eb84bb059f546648b6b9536fea724e
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 07:40:57 2025 +0200

    Move Teams and Projects to own modules.

commit d11bf059d99839ecf1f5d7020b8c8c8a2454c00b
Author: Jens Luedicke <jens@luedicke.me>
Date:   Mon Jul 7 07:09:33 2025 +0200

    Move Tasks and Sprints to own modules.
2025-07-07 21:16:36 +02:00

243 lines
9.3 KiB
HTML

{% extends "layout.html" %}
{% block content %}
<div class="admin-container">
<div class="header-section">
<h1>⚠️ Confirm Company Deletion</h1>
<p class="subtitle">Critical Action Required - Review All Data Before Proceeding</p>
<a href="{{ url_for('users.admin_users') if g.user.role != Role.SYSTEM_ADMIN else url_for('users.system_admin_users') }}"
class="btn btn-md btn-secondary">← Back to User Management</a>
</div>
<div class="alert alert-danger">
<h3>Critical Warning!</h3>
<p>You are about to delete user <strong>{{ user.username }}</strong> who is the last administrator/supervisor in company <strong>{{ company.name }}</strong>.</p>
<p><strong>This action will permanently delete the entire company and ALL associated data.</strong></p>
<p>This action cannot be undone!</p>
</div>
<div class="content-section">
<h2>The following data will be permanently deleted:</h2>
<!-- Company Information -->
<div class="table-section">
<h3>🏢 Company Information</h3>
<table class="data-table">
<tr>
<th>Company Name:</th>
<td>{{ company.name }}</td>
</tr>
<tr>
<th>Company Slug:</th>
<td>{{ company.slug }}</td>
</tr>
<tr>
<th>Created:</th>
<td>{{ company.created_at.strftime('%Y-%m-%d %H:%M') }}</td>
</tr>
<tr>
<th>Description:</th>
<td>{{ company.description or 'None' }}</td>
</tr>
</table>
</div>
<!-- Users -->
{% if users %}
<div class="table-section">
<h3>👥 Users ({{ users|length }})</h3>
<table class="data-table">
<thead>
<tr>
<th>Username</th>
<th>Email</th>
<th>Role</th>
<th>Team</th>
<th>Joined</th>
<th>Status</th>
</tr>
</thead>
<tbody>
{% for u in users %}
<tr {% if u.id == user.id %}class="highlight-row"{% endif %}>
<td>
{{ u.username }}
{% if u.id == user.id %}<span class="status-badge status-warning">Target User</span>{% endif %}
</td>
<td>{{ u.email }}</td>
<td>{{ u.role.value }}</td>
<td>{{ u.team.name if u.team else 'None' }}</td>
<td>{{ u.created_at.strftime('%Y-%m-%d') }}</td>
<td>
<span class="status-badge {% if u.is_blocked %}status-blocked{% else %}status-active{% endif %}">
{% if u.is_blocked %}Blocked{% else %}Active{% endif %}
</span>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
<!-- Teams -->
{% if teams %}
<div class="table-section">
<h3>🏭 Teams ({{ teams|length }})</h3>
<table class="data-table">
<thead>
<tr>
<th>Team Name</th>
<th>Description</th>
<th>Members</th>
<th>Created</th>
</tr>
</thead>
<tbody>
{% for team in teams %}
<tr>
<td>{{ team.name }}</td>
<td>{{ team.description or 'None' }}</td>
<td>{{ team.users|length }}</td>
<td>{{ team.created_at.strftime('%Y-%m-%d') }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
<!-- Projects -->
{% if projects %}
<div class="table-section">
<h3>📝 Projects ({{ projects|length }})</h3>
<table class="data-table">
<thead>
<tr>
<th>Project Code</th>
<th>Project Name</th>
<th>Team</th>
<th>Tasks</th>
<th>Time Entries</th>
<th>Created By</th>
</tr>
</thead>
<tbody>
{% for project in projects %}
<tr>
<td>{{ project.code }}</td>
<td>{{ project.name }}</td>
<td>{{ project.team.name if project.team else 'None' }}</td>
<td>{{ project.tasks|length }}</td>
<td>{{ project.time_entries|length }}</td>
<td>{{ project.created_by.username }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
<!-- Tasks -->
{% if tasks %}
<div class="table-section">
<h3>✅ Tasks ({{ tasks|length }})</h3>
<table class="data-table">
<thead>
<tr>
<th>Task Name</th>
<th>Project</th>
<th>Status</th>
<th>Priority</th>
<th>Assigned To</th>
<th>Subtasks</th>
</tr>
</thead>
<tbody>
{% for task in tasks %}
<tr>
<td>{{ task.name }}</td>
<td>{{ task.project.code }}</td>
<td>{{ task.status.value }}</td>
<td>{{ task.priority.value }}</td>
<td>{{ task.assigned_to.username if task.assigned_to else 'None' }}</td>
<td>{{ task.subtasks|length }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
<!-- Time Entries -->
{% if time_entries_count > 0 %}
<div class="table-section">
<h3>⏱️ Time Entries ({{ time_entries_count }})</h3>
<div class="info-card">
<p>{{ time_entries_count }} time tracking entries will be permanently deleted.</p>
<p><strong>Total Hours Tracked:</strong> {{ total_hours_tracked }} hours</p>
</div>
</div>
{% endif %}
<!-- Categories -->
{% if categories %}
<div class="table-section">
<h3>🏷️ Project Categories ({{ categories|length }})</h3>
<table class="data-table">
<thead>
<tr>
<th>Category Name</th>
<th>Projects</th>
<th>Created By</th>
</tr>
</thead>
<tbody>
{% for category in categories %}
<tr>
<td>{{ category.name }}</td>
<td>{{ category.projects|length }}</td>
<td>{{ category.created_by.username }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
</div>
<!-- Confirmation Form -->
<div class="form-section">
<div class="alert alert-danger">
<h3>Final Confirmation Required</h3>
</div>
<form method="POST" action="{{ url_for('confirm_company_deletion', user_id=user.id) }}" class="user-form">
<div class="form-group">
<label for="company_name_confirm">
To confirm deletion, please type the company name: <strong>{{ company.name }}</strong>
</label>
<input type="text" class="form-control" id="company_name_confirm"
name="company_name_confirm" required
placeholder="Enter company name exactly as shown above">
</div>
<div class="form-group">
<label class="checkbox-label">
<input type="checkbox" id="understand_deletion" name="understand_deletion" required>
I understand that this action will permanently delete the company and ALL associated data, and this cannot be undone.
</label>
</div>
<div class="form-group">
<a href="{{ url_for('users.admin_users') if g.user.role != Role.SYSTEM_ADMIN else url_for('users.system_admin_users') }}"
class="btn btn-secondary">Cancel</a>
<button type="submit" class="btn btn-danger">
Delete Company and All Data
</button>
</div>
</form>
</div>
</div>
{% endblock %}