templates/computing/new.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Création d'un nouveau calcul{% endblock %}
  3. {% block body %}
  4.     <h1>Création d'un nouveau calcul</h1>
  5.     {{ include('computing/_form.html.twig') }}
  6.     <br/>
  7.     <a class="btn btn-outline-secondary waves-effect"  href="{{ path('app_computing_index') }}">Annuler</a>
  8. {% endblock %}