J o b + T i t l e
{{ one_job.name }}
{% if (signups | length >= one_job.num_volunteers) %}
- Status: FULL
{% else %}
- Status: OPEN
{% endif %}
{% if session['id'] in signups | map(attribute='user_id') %}
{% else %}
{% if (signups | length == one_job.num_volunteers) %}
- No more voluteers required at this time
{% else %}
-
{% endif %}
{% endif %}
- 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 %}