blob: f464bd91845cd633a806ef08f47e446ef4004694 (
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
37
38
|
<h1>Upgrade from Beta 1 to Beta 2</h1>
{form legend="Installed Packages"}
<input type="hidden" name="step" value="{$next_step}" />
{if $failedcommands}
<div class="form-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="form-group">
<ul class="result">
<li class="success">
All Database operations completed succesfully
</li>
</ul>
</div>
<div class="form-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="form-group">
{forminput}
<input type="submit" class="btn btn-primary" value="Continue install process" />
{/forminput}
</div>
{/form}
|