{% extends "base.html" %} {% block title %}Recruit volunteers for {{ auction }}{% endblock %} {% block content %} {% include "auction_ribbon.html" %}

Recruit volunteers

Use this page to get help from users in your auction. This will send a notification to people with the mobile app who can volunteer to help with the job you specify. {{ helper_count }} reachable

{% csrf_token %}
{{ form.description }} {% for error in form.description.errors %}
{{ error }}
{% endfor %}
{{ form.bounty }}
{{ form.bounty.help_text }}
{% for error in form.bounty.errors %}
{{ error }}
{% endfor %}
{{ form.people_needed }}
{{ form.people_needed.help_text }}
{% for error in form.people_needed.errors %}
{{ error }}
{% endfor %}
Jobs in this auction
{% if jobs %}
{% for job in jobs %} {% endfor %}
Job Signed up Bounty Created
{{ job.description }} {% if job.canceled %}canceled {% elif job.is_full %}full{% endif %} {{ job.signups_count }} / {{ job.people_needed }} {% if job.bounty %}{{ auction.currency_symbol }}{{ job.bounty|floatformat:2 }}{% else %}Volunteer{% endif %} {{ job.created_at|date:"M j, g:i a" }} {% if not job.canceled and not job.is_full %}
{% csrf_token %}
{% endif %}
{% else %}
No jobs yet. Ask for help above.
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}