commented out checkbox for enabling non ready feature

This commit is contained in:
fred-fri 2012-05-25 10:32:28 +09:00
parent b924ec809f
commit b7d3f96af1
2 changed files with 9 additions and 9 deletions
src/main/java/se/su/dsv/scipro/admin/pages/settings

@ -32,12 +32,12 @@
<td><input name="7" type="checkbox" wicket:id="mailNotifications" />
</td>
</tr>
<tr>
<td><label for="7">Enable remote exports:</label>
</td>
<td><input name="7" type="checkbox" wicket:id="remoteExport" />
</td>
</tr>
<!--<tr>-->
<!--<td><label for="7">Enable remote exports:</label>-->
<!--</td>-->
<!--<td><input name="7" type="checkbox" wicket:id="remoteExport" />-->
<!--</td>-->
<!--</tr>-->
<tr>
<td><label for="7">Supervisors can accept and decline project ideas:</label>
</td>

@ -36,8 +36,8 @@ public class AdminGeneralSettingsPage extends AbstractAdminSettingsPage {
TextField<String> mailFromName = new RequiredTextField<String>("mailFromName");
TextField<String> systemFromMail = new RequiredTextField<String>("systemFromMail");
TextField<String> smtpServer = new RequiredTextField<String>("smtpServer");
CheckBox mailNotifications = new CheckBox("remoteExport");
CheckBox remoteExport = new CheckBox("mailNotifications");
CheckBox remoteExport = new CheckBox("remoteExport");
CheckBox mailNotifications = new CheckBox("mailNotifications");
CheckBox supervisorsCanAcceptDeclinePIs = new CheckBox("supervisorsCanAcceptDeclinePIs");
CheckBox matchAlgorithmMatchesAreForceAccepted = new CheckBox("matchAlgorithmMatchesAreForceAccepted");
@ -45,7 +45,7 @@ public class AdminGeneralSettingsPage extends AbstractAdminSettingsPage {
add(systemFromMail);
add(smtpServer);
add(mailNotifications);
add(remoteExport);
// add(remoteExport);
add(supervisorsCanAcceptDeclinePIs);
add(matchAlgorithmMatchesAreForceAccepted);
}