-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathwww_backup.tpl
More file actions
89 lines (87 loc) · 3.56 KB
/
www_backup.tpl
File metadata and controls
89 lines (87 loc) · 3.56 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{* Smarty *}
{include file="www_header.tpl"}
<div class="container">
{if !in_array("tasks_readonly", $user.tabDroits)}
<div class="row">
<div class="col-md-12">
<div class="soplanning-box">
<div class="btn-group">
<a href="restore.php" class="btn btn-default"><i class="fa fa-download fa-lg fa-fw" aria-hidden="true"></i> {#menuImport#}</a>
</div>
</div>
</div>
</div>
{/if}
<form action="process/backup.php" method="POST" id="filtreTaches">
<div class="row">
<div class="col-md-12">
<div class="soplanning-box mt-2">
<fieldset>
<legend>
{#export_titre#}
</legend>
{#export_libelle#}
<div class="form-group row col-md-12" >
<label class="col-md-2 col-form-label">{#export_choix_donnees#} :</label>
<div class="col-6">
<div class="ml-3 col-md-12 form-check col-form-label">
<input class="form-check-input" type="checkbox" name="export_configuration" id="export_configuration" value="1" checked="checked">
<label class="form-check-label" for="export_configuration">
{#export_choix_configuration#}
</label>
</div>
<div class="ml-3 col-md-12 form-check col-form-label">
<input class="form-check-input" type="checkbox" name="export_projets" id="export_projets" value="1" checked="checked">
<label class="form-check-label" for="export_projets">
{#export_choix_projets#}
</label>
</div>
<div class="ml-3 col-md-12 form-check col-form-label">
<input class="form-check-input" type="checkbox" name="export_taches" id="export_taches" value="1" checked="checked">
<label class="form-check-label" for="export_taches">
{#export_choix_taches#}
</label>
</div>
<div class="ml-3 col-md-12 form-check col-form-label">
<input class="form-check-input" type="checkbox" name="export_users" id="export_users" value="1" checked="checked">
<label class="form-check-label" for="export_users">
{#export_choix_users#}
</label>
</div>
{if $smarty.const.CONFIG_SOPLANNING_OPTION_LIEUX == 1 }
<div class="ml-3 col-md-12 form-check col-form-label">
<input class="form-check-input" type="checkbox" name="export_lieux" id="export_lieux" value="1" checked="checked">
<label class="form-check-label" for="export_lieux">
{#export_choix_lieux#}
</label>
</div>
{/if}
{if $smarty.const.CONFIG_SOPLANNING_OPTION_RESSOURCES == 1 }
<div class="ml-3 col-md-12 form-check col-form-label">
<input class="form-check-input" type="checkbox" name="export_ressources" id="export_ressources" value="1" checked="checked">
<label class="form-check-label" for="export_ressources">
{#export_choix_ressources#}
</label>
</div>
{/if}
</div>
</div>
<div class="form-group row col-md-12">
<label class="col-md-2 col-form-label">{#export_nom_sauvegarde#} :</label>
<div class="col-6">
<div class="col-md-7">
<input type="text" class="form-control" name="export_nom_sauvegarde" id="export_nom_sauvegarde" value="soplanning_{$smarty.now|date_format:"%Y%m%d-%H%M%S"}">
</div>
</div>
</div>
<div class="form-group row col-md-12 align-items-center">
<div class="col-md-4"></div>
<div class="col-6">
<br />
<input type="submit" class="btn btn-primary" value="{#sauvegarder#}"/>
</div>
</div>
</div>
</div>
</div>
{include file="www_footer.tpl"}