99 lines
2.2 KiB
Twig
99 lines
2.2 KiB
Twig
{% extends 'form.html.twig' %}
|
|
|
|
{% block title %}New Gpu{% endblock %}
|
|
|
|
{% block form %}
|
|
<h2>Add Graphics Card</h2>
|
|
|
|
<div class="small callout">
|
|
<ul>
|
|
<li>
|
|
<a href="{{ path('gpu_index') }}">Back to the list</a>
|
|
</li>
|
|
</ul>
|
|
</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.slotWidth) }}
|
|
</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"
|
|
>Add</button>
|
|
{{ form_end(form) }}
|
|
{% endblock %}
|