From b5a77badf389dfb457254b421b08e0826fb146fb Mon Sep 17 00:00:00 2001 From: nic Date: Thu, 3 Apr 2025 10:31:52 -0400 Subject: [PATCH] feat: mocked up the document uploads section --- templates/partials/csv_upload.html | 24 +++++++++++++ templates/partials/document_upload.html | 5 +-- .../partials/document_upload.html.backup | 5 +++ templates/partials/document_upload_form.html | 36 +++++++++++++++++++ templates/partials/upload_actions.html | 20 +++++++++++ 5 files changed, 88 insertions(+), 2 deletions(-) create mode 100644 templates/partials/csv_upload.html create mode 100644 templates/partials/document_upload.html.backup create mode 100644 templates/partials/document_upload_form.html create mode 100644 templates/partials/upload_actions.html diff --git a/templates/partials/csv_upload.html b/templates/partials/csv_upload.html new file mode 100644 index 0000000..0f09612 --- /dev/null +++ b/templates/partials/csv_upload.html @@ -0,0 +1,24 @@ +{{define "csv_upload"}} +
+ +
+ + + + + + +
+ + +
+{{end}} \ No newline at end of file diff --git a/templates/partials/document_upload.html b/templates/partials/document_upload.html index 20c9cc4..87a0694 100644 --- a/templates/partials/document_upload.html +++ b/templates/partials/document_upload.html @@ -1,5 +1,6 @@ {{define "document_upload"}}

Document Uploads

-{{template "job_search_inputs"}} -{{template "job_search_results"}} +{{template "csv_upload"}} +{{template "document_upload_form"}} +{{template "upload_actions"}} {{end}} \ No newline at end of file diff --git a/templates/partials/document_upload.html.backup b/templates/partials/document_upload.html.backup new file mode 100644 index 0000000..20c9cc4 --- /dev/null +++ b/templates/partials/document_upload.html.backup @@ -0,0 +1,5 @@ +{{define "document_upload"}} +

Document Uploads

+{{template "job_search_inputs"}} +{{template "job_search_results"}} +{{end}} \ No newline at end of file diff --git a/templates/partials/document_upload_form.html b/templates/partials/document_upload_form.html new file mode 100644 index 0000000..35c6437 --- /dev/null +++ b/templates/partials/document_upload_form.html @@ -0,0 +1,36 @@ +{{define "document_upload_form"}} +
+ +
+
+
+ + +
+ +
+
+ + +
+ +
+ + +
+
+ + +
+
+ +
+{{end}} \ No newline at end of file diff --git a/templates/partials/upload_actions.html b/templates/partials/upload_actions.html new file mode 100644 index 0000000..c4715dd --- /dev/null +++ b/templates/partials/upload_actions.html @@ -0,0 +1,20 @@ +{{define "upload_actions"}} +
+ +
+ + + +
+
+{{end}} \ No newline at end of file