check.html.twig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {% extends "SensioDistributionBundle::Configurator/layout.html.twig" %}
  2. {% block content %}
  3. {% if majors|length %}
  4. <h1>Major Problems that need to be fixed now</h1>
  5. <p>
  6. We have detected <strong>{{ majors|length }}</strong> major problems.
  7. You <em>must</em> fix them before continuing:
  8. </p>
  9. <ol>
  10. {% for message in majors %}
  11. <li>{{ message }}</li>
  12. {% endfor %}
  13. </ol>
  14. {% endif %}
  15. {% if minors|length %}
  16. <h1>Some Recommandations</h1>
  17. <p>
  18. {% if majors|length %}
  19. Additionally, we
  20. {% else %}
  21. We
  22. {% endif %}
  23. have detected some minor problems that we <em>recommend</em> you to fix to have a better Symfony
  24. experience:
  25. <ol>
  26. {% for message in minors %}
  27. <li>{{ message }}</li>
  28. {% endfor %}
  29. </ol>
  30. </p>
  31. {% endif %}
  32. {% if not majors|length %}
  33. <ul class="symfony_list">
  34. <li><a href="{{ url }}">Configure your Symfony Application online</a></li>
  35. </p>
  36. {% endif %}
  37. {% endblock %}