{% extends "base.html" %} {% load static %} {% block title %}Contracts - AI ML Operations{% endblock %} {% block content %}

Contracts

Back to Dashboard
{% if chart_data_json %}

Burn Rate Charts

{% for c in contracts %}
{% endfor %}
{% endif %}
{% if contracts %} {% for contract in contracts %} {% endfor %}
Name Identifier Type % Complete Start Date End Date Proposed Amount Budget Hours Hours Charged Money Spent Money Remaining Projected End Date
{{ contract.name }} {{ contract.slug }} {{ contract.contract_type }} {{ contract.ticket_percent_complete|floatformat:0 }}% {{ contract.baseline_start }} {{ contract.baseline_end }} {{ contract.proposed_amount }} {{ contract.budget_hours }} {{ contract.total_hours_spent }} ${{ contract.total_money_spent|floatformat:2 }} ${{ contract.remaining_money|floatformat:2 }} {{ contract.projected_end_date }}

Create a new contract.

{% else %}

There are no contracts. Please make one.

{% endif %}
{% endblock %}