|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/irtiweb/CATS/modules/settings/ |
Upload File : |
<?php /* $Id: Localization.tpl 2108 2007-03-08 09:30:00Z will $ */ ?>
<?php TemplateUtility::printHeader('Settings', array('modules/settings/validator.js')); ?>
<?php TemplateUtility::printHeaderBlock(); ?>
<?php TemplateUtility::printTabs($this->active, $this->subActive); ?>
<div id="main">
<?php TemplateUtility::printQuickSearch(); ?>
<div id="contents">
<table>
<tr>
<td width="3%">
<img src="images/settings.gif" width="24" height="24" border="0" alt="Settings" style="margin-top: 3px;" />
</td>
<td><h2>Settings: Administration</h2></td>
</tr>
</table>
<p class="note">Localization</p>
<table class="searchTable" width="100%">
<tr>
<td>
<div style="width: 700px;">These options affect how CATS formats numbers, dates, and time. <span style="font-weight:bold;">You (and your other site users) will need to log out and log back in for these settings to take effect.</span></div>
<br />
<form action="<?php echo(CATSUtility::getIndexName()); ?>?m=settings&a=administration" id="localizationForm" method="post">
<input type="hidden" name="postback" value="postback" />
<input type="hidden" name="administrationMode" value="localization" />
<table class="editTable" width="700">
<tr>
<td>Please choose your time zone.</td>
</tr>
<tr>
<td style="padding-bottom: 10px;"><?php TemplateUtility::printTimeZoneSelect('timeZone', 'width: 420px;', '', $this->timeZone); ?></td>
</tr>
<tr>
<td>Please choose your preferred date format.</td>
</tr>
<tr>
<td style="padding-bottom: 5px;">
<select id="dateFormat" name="dateFormat" style="width: 150px;">
<option value="mdy"<?php if (!$this->isDateDMY): ?> selected<?php endif; ?>>MM-DD-YYYY (US)</option>
<option value="dmy"<?php if ($this->isDateDMY): ?> selected<?php endif; ?>>DD-MM-YYYY (UK)</option>
</select>
</td>
</tr>
</table>
<input type="submit" class="button" value="Save (And Logout)" />
<input type="button" name="back" class="button" value="Back" onclick="document.location.href='<?php echo(CATSUtility::getIndexName()); ?>?m=settings&a=administration';" />
</form>
</td>
</tr>
</table>
</div>
</div>
<?php TemplateUtility::printFooter(); ?>