{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% load humanize %} {% block page_title %}{% trans "Production Tables" %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}
{{ project_stats.draft_projects|intcomma }} {% trans "drafts" %} {{ project_stats.saved_projects|intcomma }} {% trans "saved" %} {{ project_stats.selected_items|intcomma }} {% trans "items" %} {{ project_stats.selected_quantity|intcomma }} {% trans "units" %} {{ project_stats.craftable_lines|intcomma }} {% trans "prod lines planned" %} {{ project_stats.buy_lines|intcomma }} {% trans "buy lines planned" %} {% if project_stats.in_prod_jobs %} {{ project_stats.in_prod_jobs|intcomma }} {% trans "jobs running" %} {% endif %}
{# === DRAFTS === #}

{% trans "In progress" %} {{ draft_projects|length|intcomma }}

{% if draft_projects %}
{% for project in draft_projects %} {% include "indy_hub/industry/_project_card.html" %} {% endfor %}
{% trans "Status" %} {% trans "Project" %} {% trans "Scope" %} {% trans "Production" %} {% trans "Updated" %}
{% else %}

{% trans "No draft tables. Start with an EFT fitting or a manual list to create your first multi-item craft table." %}

{% endif %}
{# === SAVED === #}

{% trans "Saved tables" %} {{ saved_projects|length|intcomma }}

{% if saved_projects %}
{% for project in saved_projects %} {% include "indy_hub/industry/_project_card.html" %} {% endfor %}
{% trans "Status" %} {% trans "Project" %} {% trans "Scope" %} {% trans "Production" %} {% trans "Updated" %}
{% else %}

{% trans "No saved craft tables yet. Save a draft once the table name and scope are stable." %}

{% endif %}
{# === ARCHIVED === #}
{% if archived_projects %}
{% for project in archived_projects %} {% include "indy_hub/industry/_project_card.html" %} {% endfor %}
{% trans "Status" %} {% trans "Project" %} {% trans "Scope" %} {% trans "Production" %} {% trans "Updated" %}
{% else %}

{% trans "No archived tables. Move a project to the Archived status from its workspace header to find it here." %}

{% endif %}
{% endblock content %} {% block extra_javascript %} {% endblock extra_javascript %}