blob: cfba23a5bba953ffc38b833c10ce7482c4531e4f (
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
|
<h1>Upgrade from Beta 1 to Beta 2</h1>
{form class="form-horizontal" legend="Installed Packages"}
<input type="hidden" name="step" value="{$next_step}" />
{if $failedcommands}
<div class="control-group">
<h3>The following database operations failed</h3>
<textarea rows="20" cols="50">{section loop=$failedcommands name=ix}{$failedcommands[ix]}{/section}</textarea>
<h4>Some errors occured. Your site may not be ready to run. You can revisit the previous page to rerun the installation.</h4>
</div>
{else}
<div class="control-group">
<ul class="result">
<li class="success">
All Database operations completed succesfully
</li>
</ul>
</div>
<div class="control-group">
{formlabel label="Packages that were installed"}
{forminput}
<ul>
{foreach from=$package_list item=package}
<li>{$package}<li>
{/foreach}
</ul>
{/forminput}
</div>
{/if}
<div class="control-group submit">
<input type="submit" class="btn" value="Continue install process" />
</div>
{/form}
|