templates/admin/Competition/edit.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Edit competition{% endblock %}
  3. {% block heading %}Edit competition <strong>{{ competition.name }}</strong>{%  endblock %}
  4. {% block body %}
  5.     {% if form is defined %}
  6.         {{ form_start(form) }}
  7.         {{ form_widget(form) }}
  8.         <input type="submit" class="btn btn-primary" value="{% trans %}Save{% endtrans %}"/>
  9.         {{ form_end(form) }}
  10.     {% endif %}
  11. {% endblock %}