remove vendor id from list #19

Merged
lubiana merged 1 commit from remove_vendor_id_from_list into main 2024-06-26 18:49:48 +00:00
Showing only changes of commit 01354fa70c - Show all commits

View file

@ -8,7 +8,6 @@
<table class="table"> <table class="table">
<thead> <thead>
<tr> <tr>
<th>Id</th>
<th>Name</th> <th>Name</th>
<th>actions</th> <th>actions</th>
</tr> </tr>
@ -16,7 +15,6 @@
<tbody> <tbody>
{% for food_vendor in food_vendors %} {% for food_vendor in food_vendors %}
<tr> <tr>
<td>{{ food_vendor.id }}</td>
<td>{{ food_vendor.name }}</td> <td>{{ food_vendor.name }}</td>
<td> <td>
<a href="{{ path('app_food_vendor_show', {'id': food_vendor.id}) }}">show</a> <a href="{{ path('app_food_vendor_show', {'id': food_vendor.id}) }}">show</a>