{% extends "industry_reforged/base.html" %}
{% load i18n humanize %}
{% block details %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% if motd %}
Message of the Day
{{ motd.message|linebreaksbr }}
Last updated: {{ motd.updated_at|date:"Y-m-d H:i"
}}
{% endif %}
| {% trans "Item" %} |
{% trans "Qty" %} |
{% trans "Reward Value" %} |
{% trans "Action" %} |
{% for task in unclaimed_tasks %}
{{ task.item_type.name }}
|
{{ task.quantity }} |
{{task.gamification_value|floatformat:0|intcomma }} |
|
{% empty %}
| No open tasks available. Good
job! |
{% endfor %}
| {% trans "Item" %} |
{% trans "Qty" %} |
{% trans "Assigned To" %} |
{% trans "Action" %} |
{% for task in my_tasks %}
{{ task.item_type.name }}
|
{{ task.quantity }} |
{{ task.assigned_to.character_name }} |
|
{% empty %}
| You have no active tasks. Claim
some from the Job Market! |
{% endfor %}
| {% trans "Item" %} |
{% trans "Qty" %} |
{% trans "Assigned To" %} |
{% trans "Completed At" %} |
{% for task in my_completed_tasks %}
{{ task.item_type.name }}
|
{{ task.quantity }} |
{{ task.assigned_to.character_name }} |
{{ task.completed_at|date:"Y-m-d H:i" }} |
{% empty %}
| No recently completed tasks. |
{% endfor %}
| {% trans "Product" %} |
{% trans "Runs" %} |
{% trans "Installer" %} |
{% trans "End Date" %} |
{% for job in corp_active_jobs %}
{% if job.product_type %}
{{ job.product_type.name }}
{% else %}
Unknown
{% endif %}
|
{{ job.runs }} |
{{ job.installer.character_name|default:"Unknown" }} |
{{ job.end_date|date:"Y-m-d H:i" }} |
{% empty %}
| No active corp jobs found. |
{% endfor %}
{% endblock %}