gazette.views.notice_attachments ================================ .. py:module:: gazette.views.notice_attachments Functions --------- .. autoapisummary:: gazette.views.notice_attachments.view_notice_attachments gazette.views.notice_attachments.upload_attachment gazette.views.notice_attachments.delete_attachment Module Contents --------------- .. py:function:: view_notice_attachments(self: onegov.gazette.models.GazetteNotice, request: onegov.gazette.request.GazetteRequest) -> onegov.core.types.RenderData | webob.Response View all attachments to a single notice and allow to drop new attachments. Silently redirects to the notice view if the notice has already been accepted for non-admins. .. py:function:: upload_attachment(self: onegov.gazette.models.GazetteNotice, request: onegov.gazette.request.GazetteRequest) -> webob.Response Upload an attachment and add it to the notice. Raises a HTTP 405 (Metho not Allowed) for non-admins if the notice has already been accepted. Raises a HTTP 415 (Unsupported Media Type) if the file format is not supported. .. py:function:: delete_attachment(self: onegov.gazette.models.GazetteNoticeFile, request: onegov.gazette.request.GazetteRequest, form: onegov.gazette.forms.EmptyForm) -> onegov.core.types.RenderData | webob.Response Delete a notice attachment.