QoL changes and additions
Build and Push Docker Image / build (push) Successful in 45s

This commit is contained in:
jason
2026-04-22 13:16:42 -05:00
parent a165428f14
commit 04ae88ca0d
14 changed files with 1424 additions and 29 deletions
@@ -98,6 +98,24 @@ export default function ProjectDetailClient({
}
actions={
<>
<a
href={`/api/v1/projects/${project.id}/travelers.pdf?scope=incomplete`}
target="_blank"
rel="noopener"
title="Every part with outstanding ops — cover + drawings + cards, one PDF"
className="inline-flex items-center rounded-md bg-white border border-slate-300 text-slate-900 text-sm px-3 py-1.5 hover:border-slate-900"
>
Print outstanding travelers
</a>
<a
href={`/api/v1/projects/${project.id}/travelers.pdf?scope=all`}
target="_blank"
rel="noopener"
title="Every part in the project — full reprint bundle"
className="inline-flex items-center rounded-md bg-white border border-slate-300 text-slate-900 text-sm px-3 py-1.5 hover:border-slate-900"
>
Print all travelers
</a>
<Button variant="secondary" onClick={() => setEditOpen(true)}>
Edit project
</Button>