2022-09-29 20:09:31 -04:00
|
|
|
{% extends 'form.html.twig' %}
|
|
|
|
|
|
|
|
{% block title %}GPU Core - {% endblock %}
|
|
|
|
|
|
|
|
{% block form %}
|
|
|
|
<h2>Create new GPU Core</h2>
|
|
|
|
|
|
|
|
<div class="small callout">
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="{{ path('gpu-core_index') }}">Back to the list</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="large primary callout">
|
2022-09-30 10:48:14 -04:00
|
|
|
{{ form_start(form) }}
|
|
|
|
{{ form_widget(form) }}
|
|
|
|
<button type="submit" class="success button expanded">{{ button_label|default('Save') }}</button>
|
|
|
|
{{ form_end(form) }}
|
2022-09-29 20:09:31 -04:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|