{% extends "base.html" %} {% block title %}My Contracts{% endblock %} {% block content %}
Manage and track your personal contracts
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.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") }}
|
You haven't created any contracts yet. Get started by creating your first contract.