index.twig 512 B

12345678910111213141516
  1. {% extends 'export.twig' %}
  2. {% block message %}{{ message|raw }}{% endblock %}
  3. {% block title %}
  4. {% if export_type == 'raw' %}
  5. {% trans %}Exporting a raw query{% notes %}A query that the user has written freely{% endtrans %}
  6. {% else %}
  7. {{ 'Exporting rows from "%s" table'|trans|format(table) }}
  8. {% endif %}
  9. {% endblock %}
  10. {% set filename_hint %}
  11. {% trans '@SERVER@ will become the server name, @DATABASE@ will become the database name and @TABLE@ will become the table name.' %}
  12. {% endset %}