diff --git a/frontend/src/App.vue b/frontend/src/App.vue
index 8fda76f..452416d 100644
--- a/frontend/src/App.vue
+++ b/frontend/src/App.vue
@@ -6,6 +6,7 @@
v-for="link in links"
:key="link.name"
:text="link.name"
+ :href="link.url"
@click="$router.push(link.url)"
variant="text"
>
diff --git a/frontend/src/pages/jobs/[id].vue b/frontend/src/pages/jobs/[id].vue
new file mode 100644
index 0000000..4aa6f6a
--- /dev/null
+++ b/frontend/src/pages/jobs/[id].vue
@@ -0,0 +1,81 @@
+
+
+
+
+ Job #{{ job.job_id }}
+ Pipeline #{{ job.pipeline_id }}
+
+
+ Creation time: {{ job.creation_time }}
+
+ Finish time: {{ job.finish_time }}
+
+ Time elapsed: {{ job.elapsed_secs }}
+
+ Git commit: {{ job.git_sha }}
+
+ Git branch: {{ job.git_branch }}
+
+ Architecture: {{ job.arch }}
+
+ Package(s) to build: {{ job.packages }}
+
+ Package(s) successfully built: {{ job.successful_packages }}
+
+ Package(s) failed to build: {{ job.failed_package }}
+
+ Package(s) not built due to previous build failure: {{ job.skipped_packages }}
+
+ Log: {{ job.log_url }}
+
+ Status: {{ job.status }}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/frontend/src/pages/jobs.vue b/frontend/src/pages/jobs/index.vue
similarity index 87%
rename from frontend/src/pages/jobs.vue
rename to frontend/src/pages/jobs/index.vue
index b4e8823..5360172 100644
--- a/frontend/src/pages/jobs.vue
+++ b/frontend/src/pages/jobs/index.vue
@@ -10,7 +10,11 @@
:loading="loading"
item-value="id"
@update:options="loadItems">
-
+
+
+ {{ item.id }}
+
+