sanjiisan

Untitled

Sep 13th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. //form.html.twig
  2. <form method="post" action="{{ path("createBook")}}">
  3. <input type="text" name="title" placeholder="title">
  4. <input type="text" name="description" placeholder="description">
  5. <input type="number" name="rating" placeholder="rating">
  6. <input type="submit">
  7. </form>
  8. //showAllBooks.html.twig
  9. {% for item in allBooks %}
  10. <div>
  11. <a href="{{ path('showBook', {'id':item.id}) }}">
  12. {{ item.title }}
  13. </a>
  14.  
  15. <a href="{{ path('removeBook', {'id':item.id}) }}">
  16. Usuń
  17. </a>
  18. </div>
  19. {% endfor %}
  20. //showBook.html.twig<div>
  21. {{ book.id }}<br>
  22. {{ book.title }}<br>
  23. {{ book.description }}<br>
  24. </div>
Add Comment
Please, Sign In to add comment