{% extends "generic/object.html" %} {% load render_table from django_tables2 %} {% load plugins %} {% block content %}
| Name | {{ object.name }} |
|---|---|
| Name Internal | {{ object.name_internal }} |
| Project | {{ object.project }} |
| Contract | {{ object.contract }} |
| Price | {{ object.price|format_price_with_currency:object.currency }} |
| Invoicing Start | {{ object.invoicing_start|date:"Y-m-d"|default_if_none:""|placeholder }} |
| Invoicing End | {{ object.invoicing_end|date:"Y-m-d"|default_if_none:""|placeholder }} |
| Invoicing Status | {% include 'inventory_monitor/inc/status_badge.html' with record=object status_type='invoicing' start_date=object.invoicing_start end_date=object.invoicing_end %} |