#3401 change the values of the status in the page of device details

This commit is contained in:
Cayo Puigdefabregas 2022-05-13 13:11:00 +02:00
parent d8c9bcbcf7
commit 1dcebc0112
1 changed files with 15 additions and 3 deletions

View File

@ -125,15 +125,27 @@
<h5 class="card-title">Status Details</h5>
<div class="row">
<div class="col-lg-3 col-md-4 label">Physical State</div>
<div class="col-lg-9 col-md-8">{{ device.physical or '' }}</div>
<div class="col-lg-9 col-md-8">
{% if device.physical_status %}
{{ device.physical_status.type }}
{% endif %}
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4 label">Lifecycle States</div>
<div class="col-lg-9 col-md-8">{{ device.last_action_trading or ''}}</div>
<div class="col-lg-9 col-md-8">
{% if device.status %}
{{ device.status.type }}
{% endif %}
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4 label">Allocated States</div>
<div class="col-lg-9 col-md-8">{{ device.usage or '' }}</div>
<div class="col-lg-9 col-md-8">
{% if device.allocated_status %}
{{ device.allocated_status.type }}
{% endif %}
</div>
</div>
</div>