{% for story in story %} <tr> <th scope=”row”>{{ story.title }}</th> <td>{{ story.description }}</td> <td>{{ story.date|date(“m/d/y”) }}</td> <td><a href=”{{ path(‘app_delete’, {id: story.id}) }}” class=”btn btn-danger”>Delete</a></td> </tr> {% endfor %}
New contributor
Papi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1