summaryrefslogtreecommitdiff
path: root/templates/upgrade_ready.tpl
blob: 3fae707ccf3264f4d33a870e98eff55578fa5902 (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 {$smarty.const.BIT_MAJOR_VERSION}.{$smarty.const.BIT_MINOR_VERSION}.{$smarty.const.BIT_SUB_VERSION} {$smarty.const.BIT_LEVEL}</h3>

<p>The following packages will be updated:

<ol>
{foreach from=$gBitSystem->mUpgrades key=pkg item=upHash }
<li>{$pkg}
{/foreach}
</ol>
</p>
	<div class="row">
		{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="row">
		{forminput}
			<label><input type="checkbox" name="debug" id="debug" value="true" /> Debug mode</label>
		{/forminput}
		{formhelp note="Display SQL statements."}
	</div>

	<div class="row submit">
		<input type="submit" name="upgrade" value="Upgrade Packages" />
	</div>


{/form}