aboutsummaryrefslogtreecommitdiff
path: root/srcs/phpmyadmin/templates/display/export/template_options.twig
diff options
context:
space:
mode:
Diffstat (limited to 'srcs/phpmyadmin/templates/display/export/template_options.twig')
-rw-r--r--srcs/phpmyadmin/templates/display/export/template_options.twig7
1 files changed, 7 insertions, 0 deletions
diff --git a/srcs/phpmyadmin/templates/display/export/template_options.twig b/srcs/phpmyadmin/templates/display/export/template_options.twig
new file mode 100644
index 0000000..ddcd4f5
--- /dev/null
+++ b/srcs/phpmyadmin/templates/display/export/template_options.twig
@@ -0,0 +1,7 @@
+<option value="">-- {% trans 'Select a template' %} --</option>
+
+{% for template in templates %}
+ <option value="{{ template.id }}"{{ template.id == selected_template ? ' selected' }}>
+ {{ template.name }}
+ </option>
+{% endfor %}