23 lines
454 B
Twig
23 lines
454 B
Twig
|
{% extends 'form.html.twig' %}
|
||
|
|
||
|
{% block title %}New Socket{% endblock %}
|
||
|
|
||
|
{% block form %}
|
||
|
<h2>Add a Socket</h2>
|
||
|
|
||
|
<div class="small callout">
|
||
|
<ul>
|
||
|
<li>
|
||
|
<a href="{{ path('socket_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">Add</button>
|
||
|
{{ form_end(form) }}
|
||
|
</div>
|
||
|
{% endblock %}
|