myList.html.twig 729B

12345678910111213141516171819202122232425262728293031323334
  1. {% extends "MuzichGroupBundle::layout.html.twig" %}
  2. {% block title %}Mes groupes{% endblock %}
  3. {% block content %}
  4. {% if groups|length %}
  5. {{ 'havegroups.sentence'|trans({}, 'groups') }}
  6. <ul class="inline">
  7. {% for group in groups %}
  8. <li>
  9. <a href="{{ path('show_group', { 'slug': group.slug }) }}">{{ group.name }}</a>
  10. </li>
  11. {% endfor %}
  12. </ul>
  13. {% else %}
  14. {{ 'nogroups.sentence'|trans({}, 'groups') }}
  15. {% endif %}
  16. <h2>Ajouter un groupe</h2>
  17. <form action="{{ path('group_add') }}" method="post" {{ form_enctype(form_new) }}>
  18. {% include "MuzichGroupBundle:Form:form.html.twig" with { 'form': form_new } %}
  19. <input type="submit" />
  20. </form>
  21. {% endblock %}