mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-01-16 14:22:11 +01:00
- Updated search_results_table.html to enhance formatting and maintain consistent indentation. - Refined search_results.html layout for better structure and clarity. - Improved upload.html for better organization and readability of the upload form and data source table. - Removed unnecessary lines in package.json and streamlined devDependencies section.
48 lines
1.7 KiB
HTML
48 lines
1.7 KiB
HTML
<!-- templates/dashboard/data_source_confirm_delete.html -->
|
|
{% extends 'base.html' %} {% block title %}Delete Data Source | Chat Analytics{% endblock %}
|
|
{% block content %}
|
|
<div
|
|
class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom"
|
|
>
|
|
<h1 class="h2">Delete Data Source</h1>
|
|
<div class="btn-toolbar mb-2 mb-md-0">
|
|
<a
|
|
href="{% url 'data_source_detail' data_source.id %}"
|
|
class="btn btn-sm btn-outline-secondary"
|
|
>
|
|
<i class="fas fa-arrow-left"></i> Back to Data Source
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-6">
|
|
<div class="card border-danger">
|
|
<div class="card-header bg-danger text-white">
|
|
<h5 class="card-title mb-0">Confirm Deletion</h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<p class="lead">
|
|
Are you sure you want to delete the data source
|
|
"<strong>{{ data_source.name }}</strong>"?
|
|
</p>
|
|
<p>
|
|
This action cannot be undone. The data source and all associated chat sessions
|
|
({{ data_source.chat_sessions.count }} sessions) will be permanently deleted.
|
|
</p>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<div class="d-flex justify-content-between mt-4">
|
|
<a href="{% url 'data_source_detail' data_source.id %}" class="btn btn-secondary"
|
|
>Cancel</a
|
|
>
|
|
<button type="submit" class="btn btn-danger">Delete Data Source</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|