Posted by hmdnawaz on December 24, 2012 at 9:11am
I want to create a job system in drupal 7 with the following workflow.
1. Administrator can add the jobs.
2. A page for jobs listing.
3. On detail job there should a link of apply for this job.
4. The form will contain the fields and upload application form.
5. The back end must have trackers such as Response received at, action trackers: 'Candidate contacted, Candidate data transferred to HR', Vacany filled.
I have tried it with the views and the webform module.
Created a view for job listing. and use webform for apply form. But what should I do with the trackers in point 5. I have no idea about this.
Please guide me in this situation or any module for this requirement which should use?
Comments
Select field for "Status"
If you have step by step workflow:
1. Create field "Status" (List type)
1| Candidate contacted
2| Candidate data transferred to HR
...
6| Vacancy filled.
2. Only admin can view/edit this field - http://drupal.org/project/field_permissions
3. Create views:
3.1 Public views Job listing: Filter - don't show if Status "Vacancy filled"
3.2 Views for administrator - Exposed filter "Status" or every status can have own views.