collection-crud/templates/gpu_core/new.html.twig

23 lines
495 B
Twig

{% 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">
{{ form_start(form) }}
{{ form_widget(form) }}
<button type="submit" class="success button expanded">{{ button_label|default('Save') }}</button>
{{ form_end(form) }}
</div>
{% endblock %}