<style>
#siteProperties{
width: 100%;
}
#siteProperties *{
font-size: 11px;
}
#siteProperties th{
width: 25%;
text-align: left;
font-size: 12px;
}
#siteProperties select, #siteProperties select *{
font-size: 13px;
}
#siteProperties tr td {
padding-bottom: 10px;
}
#siteProperties .text{
width: 75%;
}
#siteProperties textarea{
height: 90px;
}
</style>
<div id="siteProperties">
<form class="ajax" action="{siteURL}{defaultController}/{adminFunction}/saveSiteProperties/" method="post" ajaxOutput="#editSitePropertiesStatus">
<div class="content">
<table>
<tr>
<th>Site Name</th>
<td><input type="text" value="{siteName}" name="siteName" class="text"/></td>
</tr>
<tr>
<th>Default Site Language</th>
<td>
{siteLanguageDropDown}
</td>
</tr>
<tr>
<th>Default Template</th>
<td>
{selectDefaultTemplate}
</td>
</tr>
<tr>
<th>Default Comments Moderator Email Address</th>
<td><input type="text" value="{commentsModeratorEmailAddress}" name="customConfigs[commentsModeratorEmailAddress]" class="text"/></td>
</tr>
<tr>
<th>Available Languages</th>
<td>
{siteLanguages}
<input type="button" value="Add" id="addNewLanguage" />
<!--<input type="button" value="Rename" id="renameLanguage" />-->
<input type="button" value="Delete" id="deleteLanguage" />
</td>
</tr>
</table>
<input type="submit" value="Save" /><input type="button" value="Cancel" onclick="hideEditSiteProperties(this)"/>
<br /><br />
<div id="editSitePropertiesStatus"></div>
<br />
</div>
</form>
<table>
<tr>
<th>Roles Manager:</th>
</tr>
<tr>
<td colspan="2">
<div id="rolesList">
{rolesList}
</div>
</td>
</tr>
<tr>
<th>Users Manager:</th>
</tr>
<tr>
<td colspan="2">
<div id="userList">
{usersList}
</div>
</td>
</tr>
</table>
</div>