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><input name="7" type="checkbox" wicket:id="mailNotifications" />
</td> </td>
</tr> </tr>
<tr> <!--<tr>-->
<td><label for="7">Enable remote exports:</label> <!--<td><label for="7">Enable remote exports:</label>-->
</td> <!--</td>-->
<td><input name="7" type="checkbox" wicket:id="remoteExport" /> <!--<td><input name="7" type="checkbox" wicket:id="remoteExport" />-->
</td> <!--</td>-->
</tr> <!--</tr>-->
<tr> <tr>
<td><label for="7">Supervisors can accept and decline project ideas:</label> <td><label for="7">Supervisors can accept and decline project ideas:</label>
</td> </td>

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