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

Client Reports

Back to Dashboard
{% if contracts %} {% for c in contracts %} {% endfor %}
Contract Name Total Budget (Hours) Total Logged (Hours) Remaining Budget (Hours)
{{ c.name }} {{ c.budget_hours }} {{ c.total_logged }} {{ c.remaining_budget }}
{% else %}

No data available to report.

{% endif %}
{% endblock %}