{% extends "base.html" %} {% block title %}Help with {{ job.description }}{% endblock %} {% block content %}

{{ auction.title }} needs help

{{ job.description }}

{% if job.bounty %} {{ auction.currency_symbol }}{{ job.bounty|floatformat:2 }} bounty {% else %} Volunteer {% endif %}

{% if job.canceled %}
This job was canceled.
{% elif job.is_full %}
This job already has enough people.
{% elif not has_tos %}
You need to join this auction before you can sign up to help.
Join the auction {% elif already_signed_up %}
You're signed up for this one. Thank you!
{% else %}

{{ job.spots_remaining }} spot{{ job.spots_remaining|pluralize }} left. Jobs are first come, first serve.

{% csrf_token %}
{% endif %}
{% endblock %}