report_form.twig 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <form action="error_report.php" method="post" name="report_frm" id="report_frm"
  2. class="ajax">
  3. <fieldset style="padding-top:0">
  4. <p>
  5. {% trans %}
  6. This report automatically includes data about the error and information about relevant configuration settings. It will be sent to the phpMyAdmin team for debugging the error.
  7. {% endtrans %}
  8. </p>
  9. <div class="label"><label><strong>
  10. {% trans "Can you tell us the steps leading to this error? It decisively helps in debugging:" %}
  11. </strong></label>
  12. </div>
  13. <textarea class="report-description" name="description"
  14. id="report_description"></textarea>
  15. <div class="label"><label><p>
  16. {% trans "You may examine the data in the error report:" %}
  17. </p></label></div>
  18. <pre class="report-data">{{ report_data|raw }}</pre>
  19. <input type="checkbox" name="always_send" id="always_send_checkbox" />
  20. <label for="always_send_checkbox">
  21. {% trans "Automatically send report next time" %}
  22. </label>
  23. </fieldset>
  24. {{ hidden_inputs|raw }}
  25. {{ hidden_fields|raw }}
  26. </form>