J o b + T i t l e
{{ one_job.name }}
- Status: CLOSED - Past Job
- Start Date & Time:
- {{ one_job.start_time.strftime('%m-%d-%Y - %-I:%M %p') }}
- End Date & Time:
- {{ one_job.end_time.strftime('%m-%d-%Y - %-I:%M %p') }}
- Number of Volunteers:
- {{ one_job.num_volunteers }}
- Location:
- {{ one_job.location }}
- Description:
- {{ one_job.description }}
Volunteers
{% if session['id'] == one_job.creator.id %}
{% for c in signups %}
-
{{c.users_who_signuped.first_name}} {{c.users_who_signuped.last_name}} | email: {{c.users_who_signuped.email}} | phone: {{c.users_who_signuped.phone}}
{% endfor %}
{% else %}
{% for c in signups %}
-
{{c.users_who_signuped.first_name}}
{% endfor %}
{% endif %}