{% extends "generic/object.html" %} {% load render_table from django_tables2 %} {% load plugins %} {% block content %}
| Name | {{ object.name }} |
|---|---|
| Name Internal | {{ object.name_internal }} |
| Type | {{ object.get_type_display }} |
| Contract Type | {{ object.contract_type }} |
| Contractor | {{ object.contractor }} |
| Price | {{ object.price|to_czech_crown }} |
| Signed | {{ object.signed }} |
| Accepted | {{ object.accepted }} |
| Invoicing Start | {{ object.invoicing_start }} |
| Invoicing End | {{ object.invoicing_end }} |
| Parent (Master contract) | {% if object.parent %} {{ object.parent }} {% else %} {{ ''|placeholder }} {% endif %} |