summaryrefslogtreecommitdiff
path: root/templates/upgrade_ready.tpl
blob: f8a598c3b1094361416b9f2930a7865364b59b06 (plain)
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
{form legend="Begin the upgrade process"}
	<h3>Upgrading {$upgradeFrom} to {$gBitSystem->getBitVersion()}</h3>

	<p>The following packages will be updated: </p>

	<ol>
		{foreach from=$gBitSystem->mUpgrades key=pkg item=upHash }
			<li>{$pkg}</li>
		{/foreach}
	</ol>

	<div class="form-group">
		{formlabel label="Upgrade Application" for="db"}
		{forminput}
			<select name="upgrade_from">
				<option value="TikiWiki 1.8">TikiWiki 1.8</option>
				<option value="TikiWiki 1.9">TikiWiki 1.9</option>
				<option value="BWR0">Bitweaver ReleaseZero -BONNIE-</option>
			</select>
			{formhelp note="The type of application you intend to upgrade"}
		{/forminput}
	</div>

	<div class="form-group">
		{forminput label="checkbox"}
			<input type="checkbox" name="debug" id="debug" value="true" /> Debug mode
			{formhelp note="Display SQL statements."}
		{/forminput}
	</div>

	<div class="form-group">
		{forminput}
			<input type="submit" class="btn btn-default" name="upgrade" value="Upgrade Packages" />
		{/forminput}
	</div>
{/form}