{% extends "shared/includes/base.html" %} {% load subtract %} {% block content %}

{{ contract.name }}

{% if contract.id_number %} {% endif %} {% if contract.primary_contract %} {% endif %}
Základní informace
Identifikační číslo {{ contract.id_number }}
Typy
    {% for type in contract.types.all %}
  • {% include "contracts/includes/tag.html" with url="#TODO" icon="ico--folder" content=type.name %}
  • {% endfor %}
Primární smlouva {{ contract.primary_contract.name }}
Souhrn {{ contract.summary }}
Právní stav {{ contract.get_legal_state_display }}
Soubory {% with contract.get_public_files as files %} {% if files|length != 0 %}
    {% for file in files %}
  • {% include "contracts/includes/tag.html" with url=file.file.url icon="ico--attachment" content=file.name %}
  • {% endfor %}
{% else %} Žádné {% endif %} {% endwith %}
Data
Začátek účinnosti {{ contract.valid_start_date }}
Konec účinnosti {% if contract.valid_end_date %} {{ contract.valid_end_date }} {% else %} Neurčitý {% endif %}
Fyzický dokument
Stav {{ contract.get_paper_form_state_display }}
Spisovna
{% include "contracts/includes/tag.html" with url="#TODO" icon="ico--drawer" content=contract.filing_area.name %}
| zodpovědná osoba {{ contract.filing_area.person_responsible }}
Odkazy
Výběrové řízení {% if contract.tender_url %} {{ contract.tender_url }} {% else %} Není zadáno {% endif %}
Schválení {% if contract.agreement_url %} {{ contract.agreement_url }} {% else %} Není zadáno {% endif %}
Záměry {% with contract.intents.all as intents %} {% if intents|length != 0 %}
    {% for intent in intents %}
  • {% include "contracts/includes/tag.html" with url=intent.url icon="ico--link" content=intent.name %}
  • {% endfor %}
{% else %} Žádné {% endif %} {% endwith %}
{% if contract.cost_amount %}
Finance
Náklady {{ contract.cost_amount }} Kč {% if contract.cost_unit != contract.CostUnits.TOTAL %} / {{ contract.get_cost_unit_display }} {% else %} celkem {% endif %}
{% endif %} {% with contract.issues.all as issues %} {% if issues|length != 0 %}
Doplňující informace
Poznámky
    {% for issue in issues %}
  • {% include "contracts/includes/tag.html" with url="#TODO" content=issue.name %}
  • {% endfor %}
{% endif %} {% endwith %}

Podpisy

Naší smluvní strany

{% with contract.contractee_signatures.all as signatures %} {% if signatures|length != 0 %} {% else %}
Žádné podpisy.
{% endif %} {% endwith %}

Ostatních smluvních stran

{% with contract.signee_signatures.all as signatures %} {% if signatures|length != 0 %} {% else %}
Žádné podpisy.
{% endif %} {% endwith %} {% endblock %}