Implement the view class required to moderate account deletion requests.
diff --git a/app/soc/modules/gci/views/moderate_delete_account.py b/app/soc/modules/gci/views/moderate_delete_account.py
new file mode 100644
index 0000000..c8932ab
--- /dev/null
+++ b/app/soc/modules/gci/views/moderate_delete_account.py
@@ -0,0 +1,60 @@
+# Copyright 2011 the Melange authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+"""Module for the GCI delete account page."""
+
+from soc.logic import delete_account
+
+from soc.views.helper import url_patterns
+
+from soc.modules.gci.logic import profile as profile_logic
+from soc.modules.gci.views import base
+from soc.modules.gci.views.helper.url_patterns import url
+
+
+class ModerateDeleteAccountPage(base.GCIRequestHandler):
+ """View for the GCI delete account page.
+ """
+
+ def templatePath(self):
+ return 'v2/modules/gci/moderate_delete_account/base.html'
+
+ def djangoURLPatterns(self):
+ return [
+ url(r'admin/delete_account/%s$' % url_patterns.PROFILE,
+ self, name='gci_moderate_delete_account')
+ ]
+
+ def checkAccess(self):
+ self.check.isHost()
+
+ self.mutator.profileFromKwargs()
+
+ def context(self):
+ profile = self.data.url_profile
+
+ return {
+ 'page_name': 'Moderate delete account requests',
+ 'profile': profile,
+ 'has_tasks': profile_logic.hasTasks(profile),
+ 'has_created_or_modified_tasks': profile_logic.hasCreatedOrModifiedTask(
+ profile),
+ 'has_task_comments': profile_logic.hasTaskComments(profile),
+ 'has_other_gci_profiles': profile_logic.hasOtherGCIProfiles(profile),
+ 'has_other_gsoc_profiles': profile_logic.hasOtherGSoCProfiles(profile),
+ }
+
+ def post(self):
+ delete_account.confirm_delete(self.data.url_profile)
+ self.redirect.program().to('gci_moderate_delete_account', validated=True)