Merge pull request #15927 from eileenmcnaughton/event_form
[civicrm-core.git] / templates / CRM / common / upgradeCleanup.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | Copyright CiviCRM LLC. All rights reserved. |
4 | |
5 | This work is published under the GNU AGPLv3 license with some |
6 | permitted exceptions and without any warranty. For full license |
7 | and copyright information, see https://civicrm.org/licensing |
8 +--------------------------------------------------------------------+
9 *}
10 {* upgradeCleanup.tpl: Display page for special cleanup scripts related to Upgrade.*}
11
12 <div style="margin-top: 3em; padding: 1em; background-color: #0C0; border: 1px #070 solid; color: white; font-weight: bold">
13 {if $preMessage}
14 <p>{$preMessage}</p>
15 {/if}
16 {if $rows}
17 <div class="upgrade-success">
18 <table>
19 <tr>
20 {foreach from=$columnHeaders item=header}
21 <th>{$header}</th>
22 {/foreach}
23 </tr>
24 {foreach from=$rows item=row}
25 <tr>
26 {foreach from=$row item=cell}
27 <td>{$cell}</td>
28 {/foreach}
29 </tr>
30 {/foreach}
31 </table>
32 </div>
33 {/if}
34 {if $postMessage}
35 <p>{$postMessage}</p>
36 {/if}
37 </div>