There's no message in "Recent Tickets". Where to find what is wrong?
Error: 405 Method Not Allowed
Sorry, the requested URL 'http://localhost:8000/engagementsquared/manage_relationship_types' caused an error:
Method not allowed.Exception:-] Forbidden [-Traceback:-] Forbidden [-
form_add_relationship_type = Form(db.relationship_type, formstyle=FormStyleDefault)
if form_add_relationship_type.accepted:
redirect(URL('manage_relationship_type'))
MODEL:
db.define_table('relationship_type',
Field('id','id', label='relationship Type ID', readable = False, writable = False),
Field('relationship_type_name','string', requires = IS_NOT_EMPTY()),
Field('organization_fk','integer', readable = True, writable = False, default = 1),
Field('transparency_level_fk', 'string', comment = 'Choose transparency level (you can change at any time)', writable = True, readable = True),
Field('owner_object_fk', 'integer'),
Field('relationship_type_comments','text', label = 'Relation Type Comments', requires = IS_NOT_EMPTY()),
Field('object_type_fk', 'integer'),
Field('track_this_relationship_type', 'boolean', default = True, comment = 'Enabled, means will keep track of all relationships'),
Field('created_by_function', 'string', default = request.url),
auth.signature,
format = '%(relationship_type_name)s', fake_migrate = False, migrate = True)