diff --git a/.last-branch b/.last-branch
index 89f73d5..b69a15b 100644
--- a/.last-branch
+++ b/.last-branch
@@ -1 +1 @@
-v20260106-04-jobs-archive
+v20260106-05-jobs-row-click-and-archive-button-move
diff --git a/containers/backupchecks/src/templates/main/job_detail.html b/containers/backupchecks/src/templates/main/job_detail.html
index 382a7bc..a7e062f 100644
--- a/containers/backupchecks/src/templates/main/job_detail.html
+++ b/containers/backupchecks/src/templates/main/job_detail.html
@@ -48,9 +48,15 @@
{% if can_manage_jobs %}
-
+
+
+
+
+
{% endif %}
Job history
diff --git a/containers/backupchecks/src/templates/main/jobs.html b/containers/backupchecks/src/templates/main/jobs.html
index 0fc8d31..8240d12 100644
--- a/containers/backupchecks/src/templates/main/jobs.html
+++ b/containers/backupchecks/src/templates/main/jobs.html
@@ -10,33 +10,21 @@
Backup |
Type |
Job name |
- {% if can_manage_jobs %}
- Actions |
- {% endif %}
{% if jobs %}
{% for j in jobs %}
-
+
| {{ j.customer_name }} |
{{ j.backup_software }} |
{{ j.backup_type }} |
-
- {{ j.job_name }}
- |
- {% if can_manage_jobs %}
-
-
- |
- {% endif %}
+ {{ j.job_name }} |
{% endfor %}
{% else %}
- |
+ |
No jobs found.
|
@@ -44,4 +32,24 @@
+
+
{% endblock %}
diff --git a/docs/changelog.md b/docs/changelog.md
index fccf903..dc1de2f 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -29,6 +29,14 @@
- Introduced an Admin-only Archived Jobs page to view and restore archived jobs.
- Archived job runs remain fully included in all reports and statistics to preserve historical accuracy.
+---
+
+## v20260106-05-jobs-row-click-and-archive-button-move
+
+- Restored the original Jobs page behavior where clicking anywhere on a job row navigates to the Job Details page.
+- Removed the Job name hyperlink from the Jobs table; navigation is now handled by row click again.
+- Moved the Archive action from the Jobs table to the Job Details page.
+- Placed the Archive button next to the existing Delete job button for better consistency.
================================================================================================================================================
## v0.1.16