index.twig 570 B

1234567891011121314151617181920212223242526272829
  1. {% extends 'setup/base.twig' %}
  2. {% block content %}
  3. <h2>{% trans 'Configuration file' %}</h2>
  4. {{ form_top_html|raw }}
  5. <input type="hidden" name="eol" value="{{ eol }}">
  6. {{ fieldset_top_html|raw }}
  7. <tr>
  8. <td>
  9. <textarea cols="50" rows="20" name="textconfig" id="textconfig" spellcheck="false">
  10. {{- config -}}
  11. </textarea>
  12. </td>
  13. </tr>
  14. <tr>
  15. <td class="lastrow left">
  16. <input class="green" type="submit" name="submit_download" value="{% trans 'Download' %}">
  17. </td>
  18. </tr>
  19. {{ form_bottom_html|raw }}
  20. {{ fieldset_bottom_html|raw }}
  21. {% endblock %}