108 lines
2.4 KiB
Twig
108 lines
2.4 KiB
Twig
|
{% extends 'form.html.twig' %}
|
||
|
|
||
|
{% block title %}Edit Previously Owned Gpu{% endblock %}
|
||
|
|
||
|
{% block form %}
|
||
|
<h2>Edit Graphics Card</h2>
|
||
|
|
||
|
<div class="small callout">
|
||
|
<ul>
|
||
|
<li>
|
||
|
<a href="{{ path('previously-owned-gpu_index') }}">Back to the list</a>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
{{ form_start(form) }}
|
||
|
<fieldset class="large primary callout">
|
||
|
<legend>Names / Brands</legend>
|
||
|
|
||
|
{{ form_row(form.gpuBrand) }}
|
||
|
{{ form_row(form.modelName) }}
|
||
|
{{ form_row(form.gpuCore) }}
|
||
|
|
||
|
<hr />
|
||
|
|
||
|
{{ form_row(form.boardBrand) }}
|
||
|
{{ form_row(form.alternateModelName) }}
|
||
|
</fieldset>
|
||
|
|
||
|
<fieldset class="large primary callout">
|
||
|
<legend>Bus / Size</legend>
|
||
|
|
||
|
{{ form_row(form.cardKey) }}
|
||
|
{{ form_row(form.busInterface) }}
|
||
|
{{ form_row(form.slotSpan) }}
|
||
|
</fieldset>
|
||
|
|
||
|
<fieldset class="large primary callout">
|
||
|
<legend>Power</legend>
|
||
|
|
||
|
{{ form_row(form.molexPower) }}
|
||
|
{{ form_row(form.pcie6power) }}
|
||
|
{{ form_row(form.pcie8power) }}
|
||
|
{{ form_row(form.tdp) }}
|
||
|
</fieldset>
|
||
|
|
||
|
<fieldset class="large primary callout">
|
||
|
<legend>Clock Speeds</legend>
|
||
|
|
||
|
{{ form_row(form.baseClock) }}
|
||
|
{{ form_row(form.boostClock) }}
|
||
|
{{ form_row(form.memoryClock) }}
|
||
|
</fieldset>
|
||
|
|
||
|
<fieldset class="large primary callout">
|
||
|
<legend>Memory</legend>
|
||
|
|
||
|
{{ form_row(form.memorySize) }}
|
||
|
{{ form_row(form.memoryBus) }}
|
||
|
{{ form_row(form.memoryType) }}
|
||
|
</fieldset>
|
||
|
|
||
|
<fieldset class="large primary callout">
|
||
|
<legend>Rendering Hardware</legend>
|
||
|
|
||
|
{{ form_row(form.shadingUnits) }}
|
||
|
{{ form_row(form.tmus) }}
|
||
|
{{ form_row(form.rops) }}
|
||
|
{{ form_row(form.computeUnits) }}
|
||
|
{{ form_row(form.l1cache) }}
|
||
|
{{ form_row(form.l2cache) }}
|
||
|
</fieldset>
|
||
|
|
||
|
<fieldset class="large primary callout">
|
||
|
<legend>API Support</legend>
|
||
|
|
||
|
{{ form_row(form.directXSupport) }}
|
||
|
{{ form_row(form.openGLSupport) }}
|
||
|
{{ form_row(form.openCLSupport) }}
|
||
|
{{ form_row(form.vulkanSupport) }}
|
||
|
{{ form_row(form.shaderModel) }}
|
||
|
</fieldset>
|
||
|
|
||
|
<fieldset class="large primary callout">
|
||
|
<legend>Misc.</legend>
|
||
|
|
||
|
{{ form_row(form.link) }}
|
||
|
{{ form_row(form.count) }}
|
||
|
{{ form_row(form.acquired) }}
|
||
|
{{ form_row(form.notes) }}
|
||
|
</fieldset>
|
||
|
|
||
|
{{ form_widget(form) }}
|
||
|
<button
|
||
|
type="submit"
|
||
|
class="success button expanded"
|
||
|
>Update</button>
|
||
|
{{ form_end(form) }}
|
||
|
|
||
|
{{ form_start(reacquire_form) }}
|
||
|
{{ form_widget(reacquire_form) }}
|
||
|
<button type="submit" class="button expanded">Reacquire</button>
|
||
|
{{ form_end(reacquire_form) }}
|
||
|
|
||
|
</div>
|
||
|
{% endblock %}
|