Skip to content

Commit

Permalink
Remove recipient_po_box_number
Browse files Browse the repository at this point in the history
  • Loading branch information
brylie committed Nov 29, 2023
1 parent bbc3c2c commit 74c5aa2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion orders/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ class Meta:
)
recipient_street_address: str = factory.Faker("street_address") # type: ignore
recipient_postal_code: str = factory.Faker("zipcode") # type: ignore
recipient_po_box_number: str = factory.Faker("random_int") # type: ignore
recipient_address_locality: str = factory.Faker("city") # type: ignore
recipient_address_region: str = factory.Faker("state") # type: ignore
recipient_address_country: str = factory.Faker("country") # type: ignore
Expand Down
1 change: 0 additions & 1 deletion orders/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ class Meta:
[
FieldPanel("recipient_name"),
FieldPanel("recipient_street_address"),
FieldPanel("recipient_po_box_number"),
FieldPanel("recipient_postal_code"),
FieldPanel("recipient_address_locality"),
FieldPanel("recipient_address_region"),
Expand Down
6 changes: 0 additions & 6 deletions orders/templates/orders/create.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,6 @@ <h2>Recipient</h2>
</div>
</div>

<div class="row">
<div class="col-md-6">
{{ form.recipient_po_box_number | as_crispy_field }}
</div>
</div>

<div class="row">
<div class="form-group col-md-2 mb-0">
{{ form.recipient_address_locality | as_crispy_field }}
Expand Down

0 comments on commit 74c5aa2

Please sign in to comment.