Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. {% form_theme form 'bootstrap_3_layout.html.twig' %}
  2. {% extends 'base.html.twig' %}
  3.  
  4. {% block body %}
  5. <h1>Concept creation</h1>
  6.  
  7. {{ form_start(form) }}
  8. {{ form_widget(form) }}
  9. <input type="submit" value="Create" />
  10. {{ form_end(form) }}
  11.  
  12. <ul>
  13. <li>
  14. <a href="{{ path('concept_index') }}">Back to the list</a>
  15. </li>
  16. </ul>
  17. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement