Sample Recruitment Application - Post Application
   Post Application  - Form
   Post Application  - Deluge Code
   View Applications - List View
   View Applications - Deluge Code
 
  Post Application - Form

 
    Post Application - Deluge code
form New_Applicant
{
    displayname = "Add your resume"
    must have Applicant_Name
    (
        displayname = "Your Name"
        type = text
    )
    Email_ID
    (
        displayname = "Email ID"
        type = email
    )
    Experience
    (
        type = picklist
        values = {Fresher, Experience 1yr, Experience 2+yrs, Experience 5+yrs, Experience 10+yrs}
    )
    Applied_For
    (
        displayname = "Applied For"
        type = picklist values = New_Opening.Position_Name
    )
    on submit
    {
        opening = New_Opening [Position_Name == $Applied_For];
        if (opening.Status == "Closed")
        {
            alert "The job profile " + $Applied_For + " for which you have applied is not currently open ";
            cancel submit;
        }
    }
}
 
   View Applications  -  List View

    View Applications  -  Deluge Code
list "View applications"
{
    show all rows from New_Applicant
}