final.html.twig 959 B

12345678910111213141516171819202122232425262728
  1. {% extends "SensioDistributionBundle::Configurator/layout.html.twig" %}
  2. {% block content_class %}config_done{% endblock %}
  3. {% block content %}
  4. <h1>Well done!</h1>
  5. {% if is_writable %}
  6. <h2>Your distribution is configured!</h2>
  7. {% else %}
  8. <h2 class="configure-error">Your distribution is almost configured but...</h2>
  9. {% endif %}
  10. <h3>
  11. <span>
  12. {% if is_writable %}
  13. Your parameters.ini has been overwritten with these parameters (in <em>{{ ini_path }}</em>):
  14. {% else %}
  15. Your parameters.ini file is not writeable! Here are the parameters you can copy and paste in <em>{{ ini_path }}</em>:
  16. {% endif %}
  17. </span>
  18. </h3>
  19. <textarea class="symfony-configuration">{{ parameters }}</textarea>
  20. {% if welcome_url %}
  21. <ul>
  22. <li><a href="{{ welcome_url }}">Go to the Welcome page</a></li>
  23. </ul>
  24. {% endif %}
  25. {% endblock %}