{% extends "base.html" %} {% block title %}Contract List{% endblock %} {% block content %}
{{ 'Your Contracts' if not is_admin else 'Total Contracts (Filtered)' }}

{{ total_contracts }}

Last Contract: {{ last_contract_number if last_contract_number else 'None' }}
Global Contracts

{{ total_contracts_global }}

Across all users
Add New Consultant
{% if is_admin %} {% endif %} {% for contract in contracts %} {% if is_admin %} {% endif %} {% endfor %}
Contract Number Project Title Party B Start Date End Date Total Fee (USD) ArticlesCreated ByActions
{{ contract.contract_number or 'N/A' }} {{ contract.project_title or 'N/A' }} {{ contract.party_b_signature_name or 'N/A' }} {{ contract.agreement_start_date_display or 'N/A' }} {{ contract.agreement_end_date_display or 'N/A' }} ${{ contract.total_fee_usd or '0.00' }} {{ contract.custom_article_sentences|length }} {{ 'article' if contract.custom_article_sentences|length == 1 else 'articles' }}{{ contract.username or 'N/A' }}
{% if contracts|length == 0 %}No contracts found.{% endif %}
{% endblock %}