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