From 883ec1d1d140b921aea5af1d52355c77009c2da7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20A=2E=20S=C3=A1nchez=20L=C3=B3pez?= Date: Thu, 17 Mar 2011 17:26:29 +0000 Subject: [PATCH] Do not require approval for individual submissions. Fixes #623 - Legacy-Id: 2895 --- ietf/submit/views.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ietf/submit/views.py b/ietf/submit/views.py index c54b0376f..b0a5998ca 100644 --- a/ietf/submit/views.py +++ b/ietf/submit/views.py @@ -109,8 +109,11 @@ def draft_status(request, submission_id, submission_hash=None, message=None): approved_detail = IdApprovedDetail.objects.get(filename=detail.filename) except ObjectDoesNotExist: approved_detail = None + if detail.group_acronym and not approved_detail: detail.status_id = INITIAL_VERSION_APPROVAL_REQUESTED detail.save() + else: + approved_detail = True if detail.revision == '00' and not approved_detail: submitter = auto_post_form.save_submitter_info()