2022-10-27 11:55:16 -04:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
|
|
|
{% block title %}Cpu{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
2022-10-28 08:46:35 -04:00
|
|
|
<h2>CPUs</h2>
|
2022-10-27 11:55:16 -04:00
|
|
|
|
2022-10-28 08:46:35 -04:00
|
|
|
<div class="small callout primary">
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="{{ path('cpu_new') }}">Add Cpu</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2022-10-27 11:55:16 -04:00
|
|
|
|
2022-10-28 08:46:35 -04:00
|
|
|
<table class="hover scroll sortable stack">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th> </th>
|
|
|
|
<th>Id</th>
|
|
|
|
<th>Arch</th>
|
|
|
|
<th>Model</th>
|
|
|
|
<th>Socket(s)</th>
|
|
|
|
<th>Part Number</th>
|
|
|
|
<th>Lot Number</th>
|
|
|
|
<th>uArch</th>
|
|
|
|
<th>Code Name</th>
|
|
|
|
<th>Speed</th>
|
|
|
|
<th>C/T</th>
|
|
|
|
<th>L1 Cache</th>
|
|
|
|
<th>L2 Cache</th>
|
|
|
|
<th>L3 Cache</th>
|
|
|
|
<th>Igp</th>
|
|
|
|
<th>Voltage</th>
|
|
|
|
<th>Tdp</th>
|
|
|
|
<th>ProcessNode</th>
|
|
|
|
<th>Count</th>
|
|
|
|
<th>Usable</th>
|
|
|
|
<th>Received</th>
|
|
|
|
<th>Link</th>
|
|
|
|
<th>Notes</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for cpu in cpus %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="{{ path('cpu_show', {'id': cpu.id}) }}">
|
|
|
|
View 👁
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="{{ path('cpu_edit', {'id': cpu.id}) }}">
|
|
|
|
Edit <span class="edit-icon">✎</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</td>
|
|
|
|
<td>{{ cpu.id }}</td>
|
|
|
|
<td>{{ cpu.architecture.value }}</td>
|
|
|
|
<td>{{ cpu.brand.name }} {{ cpu.productLine }} {{ cpu.model }}</td>
|
|
|
|
<td>
|
|
|
|
<ul>
|
|
|
|
{% for socket in cpu.sockets %}
|
|
|
|
<li>{{ socket.name }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</td>
|
|
|
|
<td>{{ cpu.partNumber }}</td>
|
|
|
|
<td>{{ cpu.lotNumber }}</td>
|
|
|
|
<td>{{ cpu.microArchitecture }}</td>
|
|
|
|
<td>{{ cpu.codeName }}</td>
|
|
|
|
<td>
|
|
|
|
{{ cpu.baseSpeed }}
|
|
|
|
{% if cpu.boostSpeed > 0 %}
|
|
|
|
-{{ cpu.boostSpeed }}
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>{{ cpu.cores }} / {{ cpu.threads }}</td>
|
|
|
|
<td>
|
|
|
|
{% if cpu.L1uCount > 0 %}
|
|
|
|
{{ cpu.L1uCount }}x {{ cpu.L1uSize }}KB {{ cpu.L1uWay }}-way
|
|
|
|
{% endif %}
|
|
|
|
{% if cpu.L1cCount > 0 %}
|
|
|
|
{{ cpu.L1cCount }}x {{ cpu.L1dSize }}KB {{ cpu.L1dWay }}-way data,
|
|
|
|
{{ cpu.L1dCount }}x {{ cpu.L1cSize }}KB {{ cpu.L1cWay }}-way instruction
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{% if cpu.L2Count > 0 %}
|
|
|
|
{{ cpu.L2Count }}x {{ cpu.L2Size }}KB {{ cpu.L2Way }}-way
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{% if cpu.L3Count > 0 %}
|
|
|
|
{{ cpu.L3Count }}x {{ cpu.L3Size }}KB {{ cpu.L3Way }}-way
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>{{ cpu.igp }}</td>
|
|
|
|
<td>{{ cpu.voltage }}</td>
|
|
|
|
<td>{{ cpu.tdp }}</td>
|
|
|
|
<td>{{ cpu.processNode }}</td>
|
|
|
|
<td>{{ cpu.count }}</td>
|
|
|
|
<td>{{ cpu.usable ? 'Yes' : 'No' }}</td>
|
|
|
|
<td>{{ cpu.received ? 'Yes' : 'No' }}</td>
|
|
|
|
<td>{{ cpu.link }}</td>
|
|
|
|
<td>{{ cpu.notes }}</td>
|
2022-10-27 11:55:16 -04:00
|
|
|
</tr>
|
2022-10-28 08:46:35 -04:00
|
|
|
{% else %}
|
|
|
|
<tr>
|
|
|
|
<td colspan="33">no records found</td>
|
2022-10-27 11:55:16 -04:00
|
|
|
</tr>
|
2022-10-28 08:46:35 -04:00
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2022-10-27 11:55:16 -04:00
|
|
|
{% endblock %}
|