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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user