1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{#
/*
* Spring Signage Ltd - http://www.springsignage.com
* Copyright (C) 2015 Spring Signage Ltd
* (${FILE_NAME})
*/
#}
{% extends "form-base.twig" %}
{% import "forms.twig" as forms %}
{% block formTitle %}
{% trans "Export Database Backup" %}
{% endblock %}
{% block formButtons %}
{% trans "Cancel" %}, XiboDialogClose()
{% trans "Export Database" %}, $("#exportForm").submit()
{% endblock %}
{% block formHtml %}
<div class="row">
<div class="col-md-12">
<form id="exportForm" class="form-horizontal" method="get" action="{{ urlFor("maintenance.export") }}">
{% set message %}{% trans "This will create a dump file of your database that you can restore later using the import functionality." %}{% endset %}
{{ forms.message(message) }}
{% set message %}{% trans "You should also manually take a backup of your library." %}{% endset %}
{{ forms.message(message) }}
{% set message %}{% trans "Please note: The folder location for mysqldump must be available in your path environment variable for this to work and the php exec command must be enabled." %}{% endset %}
{{ forms.message(message) }}
</form>
</div>
</div>
{% endblock %}
|