{% extends 'freelance_tracker/base.html' %} {% load i18n %} {% load humanize %} {% block details %}
{{ job.name }}
{% translate "Back to list" %}
{% translate "Corporation" %}
{{ job.owner.corporation }}
{% translate "Career" %}
{{ job.get_career_display }}
{% translate "State" %}
{{ job.get_state_display }}
{% translate "Progress" %}
{{ job.progress_current|intcomma }} / {{ job.progress_desired|intcomma }}
{% translate "Reward" %}
{{ job.reward_remaining|floatformat:2|intcomma }} / {{ job.reward_initial|floatformat:2|intcomma }} ISK {% translate "remaining" %}
{% translate "Created" %}
{{ job.created }}
{% translate "Expires" %}
{{ job.expires }}
{% translate "Description" %}
{{ job.description }}
{% translate "Contribution Method" %}
{{ method_title }} {% if method_description %}
{{ method_description }}
{% endif %}
{% if parameter_rows %}
{% translate "Parameters" %}
{% for row in parameter_rows %}
{{ row.title }}
{% if row.resolved %} {% for item in row.resolved %}{% if not forloop.first %}, {% endif %}{% if item.is_any %}{% translate "Any" %}{% else %}{{ item.name|default:item.id }}{% endif %}{% endfor %} {% else %} {{ row.value }} {% endif %}
{% endfor %}
{% endif %}
{% if can_view_participants %}
{% translate "Participants" %}
{% if not participants %}

{% translate "No participants yet." %}

{% else %} {% for participant in participants %} {% endfor %}
{% translate "Character" %} {% translate "State" %} {% translate "Contributed" %}
{{ participant.character_name }} {{ participant.get_state_display }} {{ participant.contributed|intcomma }}
{% endif %}
{% endif %} {% endblock %}