1{% extends 'export.twig' %}
2
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
11{% set filename_hint %}
12  {% trans '@SERVER@ will become the server name, @DATABASE@ will become the database name and @TABLE@ will become the table name.' %}
13{% endset %}
14