Skip to content

Commit

Permalink
Don't accept result values with .
Browse files Browse the repository at this point in the history
  • Loading branch information
VirginiaDooley committed May 14, 2024
1 parent 3cce260 commit 7b6c43d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions ynr/apps/uk_results/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from django.db.models.functions import Coalesce
from uk_results.helpers import RecordBallotResultsHelper
from utils.db import LastWord, NullIfBlank
from utils.widgets import DCNumberInput
from utils.widgets import DCIntegerInput

from .models import CandidateResult, ResultSet

Expand All @@ -33,10 +33,10 @@ class Meta:
"columns": 72,
}
),
"num_turnout_reported": DCNumberInput(),
"turnout_percentage": DCNumberInput(),
"num_spoilt_ballots": DCNumberInput(),
"total_electorate": DCNumberInput(),
"num_turnout_reported": DCIntegerInput(),
"turnout_percentage": DCIntegerInput(),
"num_spoilt_ballots": DCIntegerInput(),
"total_electorate": DCIntegerInput(),
}

def __init__(self, ballot, *args, **kwargs):
Expand Down Expand Up @@ -80,7 +80,7 @@ def __init__(self, ballot, *args, **kwargs):
label=membership.name_and_party,
initial=initial.get("num_ballots"),
required=True,
widget=DCNumberInput,
widget=DCIntegerInput,
)
fields[f"tied_vote_{name}"] = forms.BooleanField(
required=False,
Expand Down
2 changes: 1 addition & 1 deletion ynr/apps/uk_results/tests/test_smoke_test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_form_view_creates_result(self):
resp = self.app.get(url, user=self.user_who_can_record_results)
self.assertEqual(resp.status_code, 200)
self.assertContains(resp, 'inputmode="numeric"')
self.assertContains(resp, r'pattern="[0-9\s\.,]*"')
self.assertContains(resp, r'pattern="[0-9\s,]*"')
form = resp.forms[1]
form["memberships_13"] = 1000
form["memberships_14"] = 2000
Expand Down
4 changes: 2 additions & 2 deletions ynr/apps/utils/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def create_option(
return option


class DCNumberInput(TextInput):
class DCIntegerInput(TextInput):
"""
An input widget for entering numbers that isn't an input `type=number`.
Expand All @@ -43,7 +43,7 @@ def build_attrs(self, base_attrs, extra_attrs=None):
attrs.update(
{
"inputmode": "numeric",
"pattern": r"[0-9\s\.,]*",
"pattern": r"[0-9\s,]*",
"oninvalid": "this.setCustomValidity('Enter a number')",
}
)
Expand Down

0 comments on commit 7b6c43d

Please sign in to comment.