Add create job endpoint

This commit is contained in:
2025-02-23 19:16:55 +01:00
parent bc2640dee0
commit b5699bd7c2
9 changed files with 100 additions and 4 deletions

5
src/views/job.rs Normal file
View File

@@ -0,0 +1,5 @@
use loco_rs::prelude::*;
pub async fn create_job(v: impl ViewRenderer) -> Result<impl IntoResponse> {
format::render().view(&v, "website/create-job.html", data!({}))
}