This commit is contained in:
lubiana 2024-02-05 16:16:43 +01:00
commit 203233d2ed
71 changed files with 8213 additions and 0 deletions

View file

@ -0,0 +1,4 @@
<form method="post" action="{{ path('app_vendor_delete', {'id': vendor.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ vendor.id) }}">
<button class="btn">Delete</button>
</form>

4
templates/vendor/_form.html.twig vendored Normal file
View file

@ -0,0 +1,4 @@
{{ form_start(form) }}
{{ form_widget(form) }}
<button class="btn">{{ button_label|default('Save') }}</button>
{{ form_end(form) }}

13
templates/vendor/edit.html.twig vendored Normal file
View file

@ -0,0 +1,13 @@
{% extends 'base.html.twig' %}
{% block title %}Edit Vendor{% endblock %}
{% block body %}
<h1>Edit Vendor</h1>
{{ include('vendor/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_vendor_index') }}">back to list</a>
{{ include('vendor/_delete_form.html.twig') }}
{% endblock %}

35
templates/vendor/index.html.twig vendored Normal file
View file

@ -0,0 +1,35 @@
{% extends 'base.html.twig' %}
{% block title %}Vendor index{% endblock %}
{% block body %}
<h1>Vendor index</h1>
<table class="table">
<thead>
<tr>
<th>Id</th>
<th>Name</th>
<th>actions</th>
</tr>
</thead>
<tbody>
{% for vendor in vendors %}
<tr>
<td>{{ vendor.id }}</td>
<td>{{ vendor.name }}</td>
<td>
<a href="{{ path('app_vendor_show', {'id': vendor.id}) }}">show</a>
<a href="{{ path('app_vendor_edit', {'id': vendor.id}) }}">edit</a>
</td>
</tr>
{% else %}
<tr>
<td colspan="3">no records found</td>
</tr>
{% endfor %}
</tbody>
</table>
<a href="{{ path('app_vendor_new') }}">Create new</a>
{% endblock %}

11
templates/vendor/new.html.twig vendored Normal file
View file

@ -0,0 +1,11 @@
{% extends 'base.html.twig' %}
{% block title %}New Vendor{% endblock %}
{% block body %}
<h1>Create new Vendor</h1>
{{ include('vendor/_form.html.twig') }}
<a href="{{ path('app_vendor_index') }}">back to list</a>
{% endblock %}

26
templates/vendor/show.html.twig vendored Normal file
View file

@ -0,0 +1,26 @@
{% extends 'base.html.twig' %}
{% block title %}Vendor{% endblock %}
{% block body %}
<h1>Vendor</h1>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ vendor.id }}</td>
</tr>
<tr>
<th>Name</th>
<td>{{ vendor.name }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('app_vendor_index') }}">back to list</a>
<a href="{{ path('app_vendor_edit', {'id': vendor.id}) }}">edit</a>
{{ include('vendor/_delete_form.html.twig') }}
{% endblock %}