~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/codeofconduct.py

Fix lint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
class CodeOfConductSetView(LaunchpadView):
166
166
    """Simple view class for CoCSet page."""
167
167
 
168
 
    page_title = 'Ubuntu Codes of Conduct'
169
 
 
170
168
 
171
169
class SignedCodeOfConductAddView(LaunchpadFormView):
172
170
    """Add a new SignedCodeOfConduct Entry."""
173
171
    schema = ISignedCodeOfConduct
174
172
    field_names = ['signedcode']
175
173
 
176
 
    @property
177
 
    def page_title(self):
178
 
        return 'Sign %s' % self.context.title
179
 
 
180
174
    @action('Continue', name='continue')
181
175
    def continue_action(self, action, data):
182
176
        signedcode = data["signedcode"]
218
212
            user=data['owner'], recipient=self.user)
219
213
 
220
214
 
221
 
class SignedCodeOfConductView(CodeOfConductView):
 
215
class SignedCodeOfConductView:
222
216
    """Simple view class for SignedCoC page."""
223
217
 
224
 
 
225
 
class SignedCodeOfConductAdminView(LaunchpadView):
 
218
    def __init__(self, context, request):
 
219
        self.context = context
 
220
        self.request = request
 
221
 
 
222
 
 
223
class SignedCodeOfConductAdminView:
226
224
    """Admin Console for SignedCodeOfConduct Entries."""
227
225
 
228
 
    page_title = 'Administer Codes of Conduct'
229
 
 
230
226
    def __init__(self, context, request):
231
227
        self.context = context
232
228
        self.request = request