collection-crud/templates/previously_owned_cpu/show.html.twig

179 lines
3.8 KiB
Twig

{% extends 'form.html.twig' %}
{% block title %}PreviouslyOwnedCpu{% endblock %}
{% block form %}
<h2>PreviouslyOwnedCpu</h2>
<div class="callout">
<ul>
<li>
<a href="{{ path('previously_owned_cpu_index') }}">Back to the list</a>
</li>
<li>
<a href="{{ path('previously_owned_cpu_edit', {'id': previously_owned_cpu.id}) }}">Edit</a>
</li>
</ul>
<hr/>
<form method="post" action="{{ path('previously_owned_cpu_delete', {'id': previously_owned_cpu.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ previously_owned_cpu.id) }}">
<button type="submit" class="alert button expanded">Delete</button>
</form>
</div>
<div class="large primary callout">
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ previously_owned_cpu.id }}</td>
</tr>
<tr>
<th>Architecture</th>
<td>{{ previously_owned_cpu.architecture }}</td>
</tr>
<tr>
<th>ProductLine</th>
<td>{{ previously_owned_cpu.productLine }}</td>
</tr>
<tr>
<th>Model</th>
<td>{{ previously_owned_cpu.model }}</td>
</tr>
<tr>
<th>PartNumber</th>
<td>{{ previously_owned_cpu.partNumber }}</td>
</tr>
<tr>
<th>LotNumber</th>
<td>{{ previously_owned_cpu.lotNumber }}</td>
</tr>
<tr>
<th>MicroArchitecture</th>
<td>{{ previously_owned_cpu.microArchitecture }}</td>
</tr>
<tr>
<th>CodeName</th>
<td>{{ previously_owned_cpu.codeName }}</td>
</tr>
<tr>
<th>BaseSpeed</th>
<td>{{ previously_owned_cpu.baseSpeed }}</td>
</tr>
<tr>
<th>BoostSpeed</th>
<td>{{ previously_owned_cpu.boostSpeed }}</td>
</tr>
<tr>
<th>Cores</th>
<td>{{ previously_owned_cpu.cores }}</td>
</tr>
<tr>
<th>Threads</th>
<td>{{ previously_owned_cpu.threads }}</td>
</tr>
<tr>
<th>Igp</th>
<td>{{ previously_owned_cpu.igp }}</td>
</tr>
<tr>
<th>Voltage</th>
<td>{{ previously_owned_cpu.voltage }}</td>
</tr>
<tr>
<th>Tdp</th>
<td>{{ previously_owned_cpu.tdp }}</td>
</tr>
<tr>
<th>ProcessNode</th>
<td>{{ previously_owned_cpu.processNode }}</td>
</tr>
<tr>
<th>L1dCount</th>
<td>{{ previously_owned_cpu.L1dCount }}</td>
</tr>
<tr>
<th>L1dSize</th>
<td>{{ previously_owned_cpu.L1dSize }}</td>
</tr>
<tr>
<th>L1dWay</th>
<td>{{ previously_owned_cpu.L1dWay }}</td>
</tr>
<tr>
<th>L1cCount</th>
<td>{{ previously_owned_cpu.L1cCount }}</td>
</tr>
<tr>
<th>L1cSize</th>
<td>{{ previously_owned_cpu.L1cSize }}</td>
</tr>
<tr>
<th>L1cWay</th>
<td>{{ previously_owned_cpu.L1cWay }}</td>
</tr>
<tr>
<th>L1uCount</th>
<td>{{ previously_owned_cpu.L1uCount }}</td>
</tr>
<tr>
<th>L1uSize</th>
<td>{{ previously_owned_cpu.L1uSize }}</td>
</tr>
<tr>
<th>L1uWay</th>
<td>{{ previously_owned_cpu.L1uWay }}</td>
</tr>
<tr>
<th>L2Count</th>
<td>{{ previously_owned_cpu.L2Count }}</td>
</tr>
<tr>
<th>L2Size</th>
<td>{{ previously_owned_cpu.L2Size }}</td>
</tr>
<tr>
<th>L2Way</th>
<td>{{ previously_owned_cpu.L2Way }}</td>
</tr>
<tr>
<th>L3Count</th>
<td>{{ previously_owned_cpu.L3Count }}</td>
</tr>
<tr>
<th>L3Size</th>
<td>{{ previously_owned_cpu.L3Size }}</td>
</tr>
<tr>
<th>L3Way</th>
<td>{{ previously_owned_cpu.L3Way }}</td>
</tr>
<tr>
<th>Count</th>
<td>{{ previously_owned_cpu.count }}</td>
</tr>
<tr>
<th>Usable</th>
<td>{{ previously_owned_cpu.usable ? 'Yes' : 'No' }}</td>
</tr>
<tr>
<th>Received</th>
<td>{{ previously_owned_cpu.received ? 'Yes' : 'No' }}</td>
</tr>
<tr>
<th>Link</th>
<td>{{ previously_owned_cpu.link }}</td>
</tr>
<tr>
<th>Notes</th>
<td>{{ previously_owned_cpu.notes }}</td>
</tr>
</tbody>
</table>
</div>
{% endblock %}