Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-01-11 01:47:53 +0300
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2018-01-11 01:47:53 +0300
commitbcb67cb15fd99ebab9ea7ebf88b0f04934d60478 (patch)
treec331b5254ee910694385d7b0cdb19d2b4e217470 /templates
parent11c43ef9807c13dbc8176ebeccbf0532e4f149e4 (diff)
Use template for getHtmlForExportOptionsOutputFormat
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/display/export/options_output_format.twig13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/display/export/options_output_format.twig b/templates/display/export/options_output_format.twig
new file mode 100644
index 0000000000..0039d87cd6
--- /dev/null
+++ b/templates/display/export/options_output_format.twig
@@ -0,0 +1,13 @@
+<li>
+ <label for="filename_template" class="desc">
+ {% trans 'File name template:' %}
+ {{ Util_showHint(message) }}
+ </label>
+ <input type="text" name="filename_template" id="filename_template" value="
+ {{- filename_template }}">
+ <input type="checkbox" name="remember_template" id="checkbox_remember_template"
+ {{- is_checked ? ' checked' }}>
+ <label for="checkbox_remember_template">
+ {% trans 'use this for future exports' %}
+ </label>
+</li>