summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules-available/backup/lang/en/template-tags.json2
-rw-r--r--modules-available/backup/templates/_page.html14
2 files changed, 11 insertions, 5 deletions
diff --git a/modules-available/backup/lang/en/template-tags.json b/modules-available/backup/lang/en/template-tags.json
index cb8aced2..cfaad9c8 100644
--- a/modules-available/backup/lang/en/template-tags.json
+++ b/modules-available/backup/lang/en/template-tags.json
@@ -1,7 +1,7 @@
{
"lang_backup": "Backup",
"lang_backupDescription": "Here you can backup the complete configuration of this satellite server. This includes lecture and virtual machine meta data. The HDD images of the virtual machines on the vm store are not included in this backup, because of their size. If desired, the store needs to be backed up manually.",
- "lang_backupRestore": "Backup and restore",
+ "lang_backupRestore": "Backup and Restore",
"lang_browseForFile": "Browse",
"lang_download": "Download",
"lang_dozmodExplanation": "This restores all the virtual machine and lecture meta data created using the \"Dozentenmodul\". Please make sure the VM-storage configured still contains all the VM-Images associated with the virtual machines. If the location of the storage changed, make sure the relative pathes on the share are still the same, otherwise the virtual machines won't be usable.",
diff --git a/modules-available/backup/templates/_page.html b/modules-available/backup/templates/_page.html
index 47b5a174..ab2fb37d 100644
--- a/modules-available/backup/templates/_page.html
+++ b/modules-available/backup/templates/_page.html
@@ -7,7 +7,7 @@
<div class="panel-heading">{{lang_backup}}</div>
<div class="panel-body">
<p>{{lang_backupDescription}}</p>
- <button class="btn btn-primary" type="submit">{{lang_download}}</button>
+ <button class="btn btn-primary pull-right" type="submit">{{lang_download}}</button>
</div>
</div>
</form>
@@ -28,14 +28,20 @@
</span>
</div>
<div>
- <label><input type="checkbox" name="restore_openslx" checked="checked"> {{lang_restoreSystemConfig}}</label>
+ <div class="checkbox">
+ <input type="checkbox" name="restore_openslx" checked="checked">
+ <label><b>{{lang_restoreSystemConfig}}</b></label>
+ </div>
<p><i>{{lang_systemExplanation}}</i></p>
</div>
<div>
- <label><input type="checkbox" name="restore_dozmod" checked="checked"> {{lang_restoreDozmodConfig}}</label>
+ <div class="checkbox">
+ <input type="checkbox" name="restore_dozmod" checked="checked">
+ <label><b>{{lang_restoreDozmodConfig}}</b></label>
+ </div>
<p><i>{{lang_dozmodExplanation}}</i></p>
</div>
- <button class="btn btn-primary" type="submit">{{lang_restore}}</button>
+ <button class="btn btn-primary pull-right" type="submit">{{lang_restore}}</button>
</div>
</div>
</form> \ No newline at end of file