98 lines
3.4 KiB
HTML
98 lines
3.4 KiB
HTML
{% import 'devices/macros.html' as macros %}
|
||
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||
<link href="https://stackpath.bootstrapcdn.com/bootswatch/3.3.7/flatly/bootstrap.min.css"
|
||
rel="stylesheet"
|
||
integrity="sha384-+ENW/yibaokMnme+vBLnHMphUYxHs34h9lpdbSLuAwGkOKFRl4C34WkjazBtb7eT"
|
||
crossorigin="anonymous">
|
||
<title>Devicehub | {{ device.__format__('t') }}</title>
|
||
</head>
|
||
<body class="container">
|
||
|
||
<div class="page-header">
|
||
<h1>{{ device.__format__('t') }}
|
||
<small>{{ device.__format__('s') }}</small>
|
||
</h1>
|
||
</div>
|
||
|
||
<div class="row">
|
||
<article class="col-md-6">
|
||
<table class="table">
|
||
<thead>
|
||
<tr>
|
||
<th></th>
|
||
<th>Range</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>
|
||
<details>
|
||
<summary>CPU – {{ device.processor_model }}</summary>
|
||
{{ macros.component_type(device.components, 'Processor') }}
|
||
</details>
|
||
</td>
|
||
<td></td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<details>
|
||
<summary>RAM – {{ device.ram_size // 1000 }} GB</summary>
|
||
{{ macros.component_type(device.components, 'RamModule') }}
|
||
</details>
|
||
</td>
|
||
<td>//range//</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<details>
|
||
<summary>Data Storage – {{ device.data_storage_size // 1000 }} GB</summary>
|
||
{{ macros.component_type(device.components, 'SolidStateDrive') }}
|
||
{{ macros.component_type(device.components, 'HardDrive') }}
|
||
</details>
|
||
</td>
|
||
<td>//range//</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<details>
|
||
<summary>Graphics – {{ device.graphic_card_model }}</summary>
|
||
{{ macros.component_type(device.components, 'GraphicCard') }}
|
||
</details>
|
||
</td>
|
||
<td>//range//</td>
|
||
</tr>
|
||
<tr>
|
||
<td>
|
||
<details>
|
||
<summary>Network –
|
||
{% if device.network_speeds[0] %}
|
||
Ethernet of {{ device.network_speeds[0] }} Mbps
|
||
{% endif %}
|
||
{% if device.network_speeds[0] and device.network_speeds[1] %}
|
||
+
|
||
{% endif %}
|
||
{% if device.network_speeds[1] %}
|
||
WiFi of {{ device.network_speeds[1] }} Mbps
|
||
{% endif %}
|
||
</summary>
|
||
{{ macros.component_type(device.components, 'NetworkAdapter') }}
|
||
</details>
|
||
</td>
|
||
<td></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</article>
|
||
<aside class="col-md-6">
|
||
<h2>Check the validity of the device</h2>
|
||
<p>Use the flashlight to scan...</p>
|
||
</aside>
|
||
</div>
|
||
|
||
</body>
|
||
</html>
|