mirror of
https://github.com/sabnzbd/sabnzbd.git
synced 2026-01-19 13:01:11 -05:00
* Backup and restore admin data * Don't import archives containing subpaths * Show result after uploading * Use existing upload system and fixed list of admin files * Fix confusing order of code lines * Add translations and link from wizard * Refactoring, change some names and move some code to sabnzbd.config * Remove unused imports * Remove queue and scan databases from backup * Style changes * Code changes * Add tests and don't crash if any admin files are missing * Cleanup * Small changes and rebase on develop Co-authored-by: Safihre <safihre@sabnzbd.org>
42 lines
2.1 KiB
HTML
42 lines
2.1 KiB
HTML
<!--#include $webdir + "/inc_top.tmpl"#-->
|
|
<form action="./one" method="post">
|
|
<div class="container">
|
|
<div id="inner">
|
|
<div id="content" class="bigger">
|
|
<div id="rightGreyText">$T('wizard-version') $version</div>
|
|
<h1>$T('wizard-quickstart')</h1>
|
|
<hr />
|
|
<div class="bigger">
|
|
<h3>$T('opt-language')</h3>
|
|
$T('explain-language')<br /><br />
|
|
<div class="main-container">
|
|
<!--#for $l, $language in $languages#-->
|
|
<label class="language">
|
|
$language<br />
|
|
<input type="radio" name="lang" id="$l" value="$l" <!--#if $active_lang == $l then 'checked="checked"' else ''#--> />
|
|
</label>
|
|
<!--#end for#-->
|
|
<!--#if not $languages#-->
|
|
<hr>
|
|
No language files detected. Please run <code>python tools/make_mo.py</code> once and restart SABnzbd, or contact your package provider.
|
|
<!--#end if#-->
|
|
<div class="spacer"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<hr />
|
|
<div class="row">
|
|
<div class="col-md-4 text-center">
|
|
<a class="btn btn-danger" href="../shutdown/?apikey=$apikey&pid=$pid"><span class="glyphicon glyphicon-remove"></span> $T('wizard-exit')</a>
|
|
</div>
|
|
<div class="col-md-4 text-center">
|
|
<a class="btn btn-default" href="../config/general/#config_backup_file"><span class="glyphicon glyphicon-open"></span> $T('restore-backup')</a>
|
|
</div>
|
|
<div class="col-md-4 text-center">
|
|
<button class="btn btn-default">$T('wizard-start') <span class="glyphicon glyphicon-chevron-right"></span></button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<!--#include $webdir + "/inc_bottom.tmpl"#--> |