start translate
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<form method="post" action="{{ path('app_post_delete', {'id': post.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
|
||||
<input type="hidden" name="_token" value="{{ csrf_token('delete' ~ post.id) }}">
|
||||
<button class="btn btn-danger">Delete</button>
|
||||
<button class="btn btn-danger">{{ 'delete'|trans }}</button>
|
||||
</form>
|
||||
|
@@ -7,7 +7,7 @@
|
||||
|
||||
{{ include('post/_form.html.twig', {'button_label': 'Update'}) }}
|
||||
|
||||
<a href="{{ path('app_post_index') }}">back to list</a>
|
||||
<a href="{{ path('app_post_index') }}">Back to list</a>
|
||||
|
||||
{{ include('post/_delete_form.html.twig') }}
|
||||
{% endblock %}
|
||||
|
@@ -7,5 +7,5 @@
|
||||
|
||||
{{ include('post/_form.html.twig') }}
|
||||
|
||||
<a href="{{ path('app_post_index') }}">back to list</a>
|
||||
<a href="{{ path('app_post_index') }}">Back to list</a>
|
||||
{% endblock %}
|
||||
|
@@ -44,9 +44,9 @@
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<a href="{{ path('app_post_index') }}">back to list</a>
|
||||
<a href="{{ path('app_post_index') }}">Back to list</a>
|
||||
|
||||
<a href="{{ path('app_post_edit', {'id': post.id}) }}">edit</a>
|
||||
<a href="{{ path('app_post_edit', {'id': post.id}) }}">Edit</a>
|
||||
|
||||
{{ include('post/_delete_form.html.twig') }}
|
||||
|
||||
|
@@ -15,7 +15,7 @@
|
||||
<th>Longitude</th>
|
||||
<th>Altitude</th>
|
||||
<th>Commentary</th>
|
||||
<th>actions</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@@ -29,8 +29,8 @@
|
||||
<td>{{ post.altitude }}</td>
|
||||
<td>{{ post.commentary }}</td>
|
||||
<td>
|
||||
<a href="{{ path('app_post_show', {'id': post.id}) }}">show</a>
|
||||
<a href="{{ path('app_post_edit', {'id': post.id}) }}">edit</a>
|
||||
<a href="{{ path('app_post_show', {'id': post.id}) }}">Show</a>
|
||||
<a href="{{ path('app_post_edit', {'id': post.id}) }}">Edit</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% else %}
|
||||
|
Reference in New Issue
Block a user