baseline
[omp.pkp.sfu.ca.git] / templates / admin / systemConfigUpdated.tpl
blobdc9b418e9c194af345f9c502ef642c3ac0e48608
1 {**
2  * systemConfigUpdated.tpl
3  *
4  * Copyright (c) 2003-2008 John Willinsky
5  * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
6  *
7  * Display confirmation of successful configuration update.
8  * If necessary, will display new config file contents if config file could not be written.
9  *
10  * $Id: systemConfigUpdated.tpl,v 1.1.1.1 2008/10/20 21:27:08 tylerl Exp $
11  *}
12 {strip}
13 {assign var="pageTitle" value="admin.systemConfiguration"}
14 {assign var="currentUrl" value="{url op="editSystemConfig"}"
15 {include file="common/header.tpl"}
16 {/strip}
18 <br/>
20 {if $writeConfigFailed}
21 <p>{translate key="admin.overwriteConfigFileInstructions"}</p>
22 {elseif $displayConfigContents}
23 <p>{translate key="admin.displayConfigFileInstructions"}</p>
24 {else}
25 <p>{translate key="admin.configFileUpdatedInstructions"}</p>
26 {/if}
28 {if $writeConfigFailed || $displayConfigContents}
29 <form action="#">
30 <h4>{translate key="admin.contentsOfConfigFile"}</h4>
31 <textarea name="config" cols="80" rows="20" class="textArea">{$configFileContents|escape}</textarea>
32 </form>
33 <br />
34 {/if}
36 <a class="action" href="{url op="systemInfo"}">{translate key="admin.systemInformation"}</a>
38 {include file="common/footer.tpl"}