22 lines
447 B
Twig
22 lines
447 B
Twig
|
{% extends 'form.html.twig' %}
|
||
|
|
||
|
{% block title %}GPU Core - Edit{% endblock %}
|
||
|
|
||
|
{% block form %}
|
||
|
<h1>Edit GPU Core</h1>
|
||
|
|
||
|
<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">
|
||
|
{{ include('gpu_core/_form.html.twig', {'button_label': 'Update'}) }}
|
||
|
|
||
|
{{ include('gpu_core/_delete_form.html.twig') }}
|
||
|
</div>
|
||
|
{% endblock %}
|