Edit core/templates/core/dashboard.html via Editor

This commit is contained in:
Flatlogic Bot 2026-01-22 17:07:10 +00:00
parent fd044ef3df
commit 01dea8c9e2

View File

@ -149,6 +149,44 @@
</div>
</div>
<div class="card border-0 shadow-sm">
<div class="card-header bg-white py-3 border-0 d-flex justify-content-between align-items-center">
<h5 class="mb-0">Recent Repair Jobs</h5>
<a href="{% url 'job_list' %}" class="small text-decoration-none">View All</a>
</div>
<div class="table-responsive">
<table class="table align-middle mb-0">
<thead class="bg-light">
<tr>
<th class="border-0 px-4">Job Ref</th>
<th class="border-0">Address</th>
<th class="border-0">Status</th>
<th class="border-0 text-end px-4">Actions</th>
</tr>
</thead>
<tbody>
{% for job in jobs %}
<tr>
<td class="px-4 fw-bold text-primary">{{ job.job_ref }}</td>
<td>{{ job.address_line_1 }}, {{ job.postcode }}</td>
<td><span class="badge bg-light text-dark border">{{ job.status.name }}</span></td>
<td class="text-end px-4">
<a href="{% url 'job_detail' job.pk %}" class="btn btn-sm btn-outline-secondary">View</a>
</td>
</tr>
{% empty %}
<tr>
<td colspan="4" class="text-center py-5 text-muted">
<i class="bi bi-clipboard2-x d-block mb-3 fs-1"></i>
No repair jobs found. Create your first job to get started!
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{# Client-specific breakdown #}
{% if client_stats %}
{% for client_stat in client_stats %}
@ -223,43 +261,7 @@
</div>
{% endif %}
<div class="card border-0 shadow-sm">
<div class="card-header bg-white py-3 border-0 d-flex justify-content-between align-items-center">
<h5 class="mb-0">Recent Repair Jobs</h5>
<a href="{% url 'job_list' %}" class="small text-decoration-none">View All</a>
</div>
<div class="table-responsive">
<table class="table align-middle mb-0">
<thead class="bg-light">
<tr>
<th class="border-0 px-4">Job Ref</th>
<th class="border-0">Address</th>
<th class="border-0">Status</th>
<th class="border-0 text-end px-4">Actions</th>
</tr>
</thead>
<tbody>
{% for job in jobs %}
<tr>
<td class="px-4 fw-bold text-primary">{{ job.job_ref }}</td>
<td>{{ job.address_line_1 }}, {{ job.postcode }}</td>
<td><span class="badge bg-light text-dark border">{{ job.status.name }}</span></td>
<td class="text-end px-4">
<a href="{% url 'job_detail' job.pk %}" class="btn btn-sm btn-outline-secondary">View</a>
</td>
</tr>
{% empty %}
<tr>
<td colspan="4" class="text-center py-5 text-muted">
<i class="bi bi-clipboard2-x d-block mb-3 fs-1"></i>
No repair jobs found. Create your first job to get started!
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</main>
</div>
{% endblock %}