blob: fe1adcbbee9348891eea5c3f95eb2d60cf58cd71 (
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>Package Upgrade</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 upgraded"}
{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-default" value="Continue upgrade process" />
{/forminput}
</div>
{/form}
|