{% extends "generic/object.html" %}
{% load render_table from django_tables2 %}
{% load django_tables2 %}
{% load plugins %}
{% load tabs %}
{% load inventory_monitor %}
{% block content %}
Service Start |
{% if object.service_start %}
{{ object.service_start|date:"Y-n-d" }} |
{% else %}
{{ ''|placeholder }} |
{% endif %}
Service End |
{% if object.service_end %}
{{ object.service_end|date:"Y-n-d" }} |
{% else %}
{{ ''|placeholder }} |
{% endif %}
Service Status |
{% include 'inventory_monitor/inc/status_badge.html' with record=object status_type='service' %} |
Service Param |
{{ object.service_param }} |
Service Price |
{{ object.service_price|to_czech_crown }} |
Service Category |
{{ object.service_category }} |
Service Category Vendor |
{{ object.service_category_vendor }} |
{% include "inc/panels/custom_fields.html" %}
{% include "inc/panels/tags.html" %}
{% include "inc/panels/comments.html" %}
{% plugin_left_page object %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock content %}