2022-07-28 15:48:14 +00:00
|
|
|
{% extends "ereuse_devicehub/base_site.html" %}
|
|
|
|
{% block main %}
|
|
|
|
|
|
|
|
<div class="pagetitle">
|
|
|
|
<h1>{{ title }}</h1>
|
|
|
|
<nav>
|
|
|
|
<ol class="breadcrumb">
|
|
|
|
<!-- TODO@slamora replace with lot list URL when exists -->
|
|
|
|
</ol>
|
|
|
|
</nav>
|
|
|
|
</div><!-- End Page Title -->
|
|
|
|
|
|
|
|
<section class="section profile">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-xl-12">
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
|
|
|
|
<div class="pt-4 pb-2">
|
|
|
|
<h5 class="card-title text-center pb-0 fs-4">{{ title }}</h5>
|
|
|
|
<p class="text-center">Please check that the information is correct.</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<table class="table table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr class="text-center">
|
|
|
|
<th scope="col">Basic Data</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<th scope="col">Info Twin device</th>
|
|
|
|
<th scope="col">Info Abstract device</th>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Manufacturer:</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<td class="table-success text-right">{{ new_placeholder.device.manufacturer or '' }}</td>
|
|
|
|
<td class="table-danger">{{ old_placeholder.device.manufacturer or '' }}</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Model:</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<td class="table-success">{{ new_placeholder.device.model or '' }}</td>
|
|
|
|
<td class="table-danger">{{ old_placeholder.device.model or '' }}</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Serial Number:</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<td class="table-success">{{ new_placeholder.device.serial_number or '' }}</td>
|
|
|
|
<td class="table-danger">{{ old_placeholder.device.serial_number or '' }}</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Brand:</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<td class="table-success">{{ new_placeholder.device.brand or '' }}</td>
|
|
|
|
<td class="table-danger">{{ old_placeholder.device.brand or '' }}</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Sku:</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<td class="table-success">{{ new_placeholder.device.sku or '' }}</td>
|
|
|
|
<td class="table-danger">{{ old_placeholder.device.sku or '' }}</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Generation:</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<td class="table-success">{{ new_placeholder.device.generation or '' }}</td>
|
|
|
|
<td class="table-danger">{{ old_placeholder.device.generation or '' }}</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Version:</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<td class="table-success">{{ new_placeholder.device.version or '' }}</td>
|
|
|
|
<td class="table-danger">{{ old_placeholder.device.version or '' }}</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Weight:</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<td class="table-success">{{ new_placeholder.device.weight or '' }}</td>
|
|
|
|
<td class="table-danger">{{ old_placeholder.device.weight or '' }}</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Width:</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<td class="table-success">{{ new_placeholder.device.width or '' }}</td>
|
|
|
|
<td class="table-danger">{{ old_placeholder.device.width or '' }}</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Height:</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<td class="table-success">{{ new_placeholder.device.height or '' }}</td>
|
|
|
|
<td class="table-danger">{{ old_placeholder.device.height or '' }}</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Depth:</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<td class="table-success">{{ new_placeholder.device.depth or '' }}</td>
|
|
|
|
<td class="table-danger">{{ old_placeholder.device.depth or '' }}</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Color:</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<td class="table-success">{{ new_placeholder.device.color or '' }}</td>
|
|
|
|
<td class="table-danger">{{ old_placeholder.device.color or '' }}</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Production date:</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<td class="table-success">{{ new_placeholder.device.production_date or '' }}</td>
|
|
|
|
<td class="table-danger">{{ old_placeholder.device.production_date or '' }}</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Variant:</th>
|
2022-08-11 12:50:47 +00:00
|
|
|
<td class="table-success">{{ new_placeholder.device.variant or '' }}</td>
|
|
|
|
<td class="table-danger">{{ old_placeholder.device.variant or '' }}</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
2022-08-11 12:50:47 +00:00
|
|
|
{% if new_placeholder.device.components or old_placeholder.device.components %}
|
2022-07-28 15:48:14 +00:00
|
|
|
<h2>Components</h2>
|
|
|
|
<table class="table table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr class="text-center">
|
2022-08-11 12:50:47 +00:00
|
|
|
<th scope="col">Info Twin device</th>
|
|
|
|
<th scope="col">Info Abstract device</th>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td class="table-success text-right">
|
2022-08-11 12:50:47 +00:00
|
|
|
{% for c in new_placeholder.device.components %}
|
2022-07-28 15:48:14 +00:00
|
|
|
* {{ c.verbose_name }}<br />
|
|
|
|
{% endfor %}
|
|
|
|
</td>
|
|
|
|
<td class="table-danger">
|
2022-08-11 12:50:47 +00:00
|
|
|
{% for c in old_placeholder.device.components %}
|
2022-07-28 15:48:14 +00:00
|
|
|
* {{ c.verbose_name }}<br />
|
|
|
|
{% endfor %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
2022-08-08 16:09:25 +00:00
|
|
|
{% if actions %}
|
2022-07-28 15:48:14 +00:00
|
|
|
<h2>Actions</h2>
|
|
|
|
<table class="table table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr class="text-center">
|
2022-08-11 12:50:47 +00:00
|
|
|
<th scope="col">Info Twin device</th>
|
|
|
|
<th scope="col">Info Abstract device</th>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td class="table-success text-right">
|
2022-08-08 16:09:25 +00:00
|
|
|
{% for a in actions %}
|
2022-07-28 15:48:14 +00:00
|
|
|
* {{ a.t }}<br />
|
|
|
|
{% endfor %}
|
|
|
|
</td>
|
|
|
|
<td class="table-danger">
|
2022-08-08 16:09:25 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
{% if tags %}
|
|
|
|
<h2>Tags</h2>
|
|
|
|
<table class="table table-hover">
|
|
|
|
<thead>
|
|
|
|
<tr class="text-center">
|
2022-08-11 12:50:47 +00:00
|
|
|
<th scope="col">Info Twin device</th>
|
|
|
|
<th scope="col">Info Abstract device</th>
|
2022-08-08 16:09:25 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td class="table-success text-right">
|
|
|
|
{% for tag in tags %}
|
|
|
|
* {{ tag.id }}<br />
|
2022-07-28 15:48:14 +00:00
|
|
|
{% endfor %}
|
|
|
|
</td>
|
2022-08-08 16:09:25 +00:00
|
|
|
<td class="table-danger">
|
|
|
|
</td>
|
2022-07-28 15:48:14 +00:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<form method="post">
|
2022-08-11 12:50:47 +00:00
|
|
|
<a href="{{ url_for('inventory.device_details', id=old_placeholder.device.devicehub_id) }}" class="btn btn-danger">Cancel</a>
|
2022-07-28 15:48:14 +00:00
|
|
|
<button class="btn btn-primary" type="submit">Confirm</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-xl-8">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{% endblock main %}
|