diff --git a/ereuse_devicehub/resources/device/templates/devices/layout.html b/ereuse_devicehub/resources/device/templates/devices/layout.html
index aa212989..3ddf3f27 100644
--- a/ereuse_devicehub/resources/device/templates/devices/layout.html
+++ b/ereuse_devicehub/resources/device/templates/devices/layout.html
@@ -10,16 +10,31 @@
crossorigin="anonymous">
Devicehub | {{ device.__format__('t') }}
+
@@ -56,7 +71,7 @@
CPU – {{ device.processor_model }}
- {% if device.rate %}
+ Processor Rate = {% if device.rate %}
{{ device.rate.processor_range }}
({{ device.rate.processor }})
{% endif %}
@@ -70,7 +85,7 @@
{{ macros.component_type(device.components, 'RamModule') }}
|
- {% if device.rate %}
+ RAM Rate = {% if device.rate %}
{{ device.rate.ram_range }}
({{ device.rate.ram }})
{% endif %}
@@ -85,7 +100,7 @@
{{ macros.component_type(device.components, 'HardDrive') }}
|
- {% if device.rate %}
+ Data Storage Rate = {% if device.rate %}
{{ device.rate.data_storage_range }}
({{ device.rate.data_storage }})
{% endif %}
@@ -190,5 +205,14 @@
+
|