summaryrefslogtreecommitdiff
path: root/lisp/service
diff options
context:
space:
mode:
authorckonstanski <kostcarl@isu.edu>2026-07-31 08:58:07 -0600
committerckonstanski <kostcarl@isu.edu>2026-07-31 08:58:07 -0600
commit2a6a26acf0b54c8097738cbeebcb840b9412672f (patch)
tree2e491824b04d1b9581049f6fd070472e823b484a /lisp/service
parent6491f702b43721cdf2698472269ebf65397de371 (diff)
stuff
Diffstat (limited to 'lisp/service')
-rw-r--r--lisp/service/resume-service.lisp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/service/resume-service.lisp b/lisp/service/resume-service.lisp
index 59643c5..fca6c6e 100644
--- a/lisp/service/resume-service.lisp
+++ b/lisp/service/resume-service.lisp
@@ -305,7 +305,7 @@ needs to JOIN with other data."
(:name "email" :label "Email" :field-type "text" :value ,(email contactinfo) :required "required")
(:name "url" :label "URL" :field-type "text" :value ,(url contactinfo))
(:name "visastatus_id" :label "VISA Status" :field-type "select" :value (visastatus_id contactinfo) :options ,(visastatus-options (get-records resume-pkg (make-instance 'visastatus) "visastatus asc")) :required "required")
- (:label "Modify CONTACTINFO" :field-type "button" :onclick ,(format nil "on_contactinfo_modify_submit_clicked(~a)" id)))
+ (:label "Modify CONTACTINFO" :field-type "button" :onclick "on_contactinfo_modify_submit_clicked()"))
"state_abbr asc, city asc, address asc"
t))
@@ -327,7 +327,7 @@ needs to JOIN with other data."
(:name "progress" :label "Progress" :field-type "text" :value ,(progress education) :required "required")
(:name "start_date" :label "Start Date" :field-type "text" :value ,(start_date education) :required "required")
(:name "end_date" :label "End Date" :field-type "text" :value ,(end_date education) :required "required")
- (:label "Modify EDUCATION" :field-type "button" :onclick ,(format nil "on_education_modify_submit_clicked(~a)" id)))
+ (:label "Modify EDUCATION" :field-type "button" :onclick "on_education_modify_submit_clicked()"))
"end_date desc, start_date desc, school asc, degree asc, major asc, minor asc"))
(define-resume-component (language
@@ -346,7 +346,7 @@ needs to JOIN with other data."
(:name "speaking_interaction" :label "Speaking Interaction" :field-type "select" :options ,(language-options) :value ,(speaking_interaction language) :required "required")
(:name "speaking_production" :label "Speaking Production" :field-type "select" :options ,(language-options) :value ,(speaking_production language) :required "required")
(:name "writing" :label "Writing" :field-type "select" :options ,(language-options) :value ,(writing language) :required "required")
- (:label "Modify LANGUAGE" :field-type "button" :onclick ,(format nil "on_language_modify_submit_clicked(~a)" id)))
+ (:label "Modify LANGUAGE" :field-type "button" :onclick "on_language_modify_submit_clicked()"))
"name asc"))
(define-resume-component (skill
@@ -355,7 +355,7 @@ needs to JOIN with other data."
(:label "Add Skill" :field-type "button" :onclick "on_skill_add_submit_clicked()"))
`((:name "id" :field-type "hidden" :value ,(id skill) :required "required")
(:name "skill" :label "Skill" :field-type "text" :value ,(skill skill) :required "required")
- (:label "Modify SKILL" :field-type "button" :onclick ,(format nil "on_skill_modify_submit_clicked(~a)" id)))
+ (:label "Modify SKILL" :field-type "button" :onclick "on_skill_modify_submit_clicked()"))
"skill asc"))
(define-resume-component (job
@@ -372,5 +372,5 @@ needs to JOIN with other data."
(:name "start_date" :label "Start Date" :field-type "text" :value ,(start_date job) :required "required")
(:name "end_date" :label "End Date" :field-type "text" :value ,(end_date job) :required "required")
(:name "overview" :label "Overview" :field-type "textarea" :value ,(overview job) :required "required")
- (:label "Modify JOB" :field-type "button" :onclick ,(format nil "on_job_modify_submit_clicked(~a)" id)))
+ (:label "Modify JOB" :field-type "button" :onclick "on_job_modify_submit_clicked()"))
"end_date desc, start_date desc, company asc"))