fix(claims): shorten intake_mode labels — single line in radio

The group title already says "How were pages 11 & 12 provided?", so the
radio labels don't need to repeat "Pages 11 & 12". Shortened to:
"Inside the original application" / "Separate file" / "Sign remotely".

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsinghpal
2026-05-19 21:37:31 -04:00
parent 10f5d44965
commit 6a1640ff6d

View File

@@ -33,9 +33,9 @@ class ApplicationReceivedWizard(models.TransientModel):
intake_mode = fields.Selection(
selection=[
('bundled', 'Pages 11 & 12 are INCLUDED in the original application'),
('separate', 'Pages 11 & 12 are a SEPARATE file'),
('remote', 'Pages 11 & 12 will be SIGNED REMOTELY'),
('bundled', 'Inside the original application'),
('separate', 'Separate file'),
('remote', 'Sign remotely'),
],
string='Intake Mode',
required=True,