fix(claims): restore long intake_mode labels, give group full width
Reverts the label shortening and instead sets col=1 on the radio group so the group's inner layout is a single column. With the full wizard width available, the full labels fit on one line each. 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', 'Inside the original application'),
|
||||
('separate', 'Separate file'),
|
||||
('remote', 'Sign remotely'),
|
||||
('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'),
|
||||
],
|
||||
string='Intake Mode',
|
||||
required=True,
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
<field name="has_pending_page11_request" invisible="1"/>
|
||||
<field name="has_signed_page11" invisible="1"/>
|
||||
|
||||
<group string="How were pages 11 & 12 provided?">
|
||||
<group string="How were pages 11 & 12 provided?" col="1">
|
||||
<field name="intake_mode" widget="radio" nolabel="1"/>
|
||||
</group>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user