{% extends 'base.html' %} {% load url %} {% load static %} {% load costs %} {% block breadcrumbs %}
{% endblock %} {% block title %} Challenge Cost Overview - {{ block.super }} {% endblock %} {% block content %}| Challenge | Status | Should be Open | Most Recent Submission | Percentage Budget Consumed | Approved Compute Costs | Total Compute Costs Incurred | Available Compute Costs | Object Storage Costs per Year | Registry Storage Costs per Year |
|---|---|---|---|---|---|---|---|---|---|
| {{ challenge.short_name }} | {{ challenge.status.name }} | {% if challenge.should_be_open_but_is_over_budget %}{% endif %} | {% if challenge.most_recent_submission_datetime %}{{ challenge.most_recent_submission_datetime|date }}{% endif %} | {% if challenge.percent_budget_consumed is not None %}{{ challenge.percent_budget_consumed }} %{% endif %} | {{ challenge.approved_compute_costs_euro_millicents|millicents_to_euro }} | {{ challenge.compute_cost_euro_millicents|millicents_to_euro }} | {{ challenge.available_compute_euro_millicents|millicents_to_euro }} | {{ challenge.size_in_storage|storage_bytes_to_euro_per_year }} | {{ challenge.size_in_registry|registry_bytes_to_euro_per_year }} |