diff --git a/core/templates/core/dashboard.html b/core/templates/core/dashboard.html
index de08b95..58d9eda 100644
--- a/core/templates/core/dashboard.html
+++ b/core/templates/core/dashboard.html
@@ -149,6 +149,44 @@
+
+
+
+
+
+
+ | Job Ref |
+ Address |
+ Status |
+ Actions |
+
+
+
+ {% for job in jobs %}
+
+ | {{ job.job_ref }} |
+ {{ job.address_line_1 }}, {{ job.postcode }} |
+ {{ job.status.name }} |
+
+ View
+ |
+
+ {% empty %}
+
+ |
+
+ No repair jobs found. Create your first job to get started!
+ |
+
+ {% endfor %}
+
+
+
+
+
{# Client-specific breakdown #}
{% if client_stats %}
{% for client_stat in client_stats %}
@@ -223,43 +261,7 @@
{% endif %}
-
-
-
-
-
-
- | Job Ref |
- Address |
- Status |
- Actions |
-
-
-
- {% for job in jobs %}
-
- | {{ job.job_ref }} |
- {{ job.address_line_1 }}, {{ job.postcode }} |
- {{ job.status.name }} |
-
- View
- |
-
- {% empty %}
-
- |
-
- No repair jobs found. Create your first job to get started!
- |
-
- {% endfor %}
-
-
-
-
+
{% endblock %}
\ No newline at end of file