{% extends "base.html" %} {% block title %}My Contracts{% endblock %} {% block content %}

My Contracts

Manage and track your personal contracts

Total Contracts

{{ contracts|length }}

Pending Signatures

0

Signed

0

Drafts

0

Filters & Search
My Contracts {% if contracts and contracts | length > 0 %} {{ contracts|length }} {% endif %}
{% if contracts and contracts | length > 0 %}
{% for contract in contracts %} {% endfor %}
Contract Title
Type Status Progress
Created
Last Updated Actions
{{ contract.title }} {% if contract.description %}
{{ contract.description }}
{% endif %}
{{ contract.contract_type }} {% if contract.status == 'PendingSignatures' %} {% elif contract.status == 'Signed' %} {% elif contract.status == 'Draft' %} {% elif contract.status == 'Expired' %} {% endif %} {{ contract.status }} {% if contract.signers|length > 0 %}
{{ contract.signed_signers }}/{{ contract.signers|length }}
{% else %} No signers {% endif %}
{{ contract.created_at | date(format="%b %d, %Y") }}
{{ contract.created_at | date(format="%I:%M %p") }}
{{ contract.updated_at | date(format="%b %d, %Y") }}
{{ contract.updated_at | date(format="%I:%M %p") }}
{% if contract.status == 'Draft' %} {% endif %}
{% else %}

No Contracts Found

You haven't created any contracts yet. Get started by creating your first contract.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}