Skip to content

Commit

Permalink
Fix manifest.
Browse files Browse the repository at this point in the history
Improve README.
Clean models.
  • Loading branch information
kenbolton committed Sep 10, 2012
1 parent c71121f commit f93ba83
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include CHANGES.txt LICENSE.txt README.md
recursive-include cartridge-tax *.py *.html *.js *.txt
recursive-include cartridge_tax *.py *.html *.js *.txt

7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add `'cartridge_tax'` to your settings.INSTALLED_APPS before
Set up your tax information in the admin configuration settings,
/admin/conf/setting/. Note the value you put in 'Shop State'. You will
need to inject a "choices" dict into
`cartridge.forms.OrderForm['fields']['shipping_detail_state']`. The
`cartridge.shop.forms.OrderForm['fields']['shipping_detail_state']`. The
values in that dict should match the style in 'Shop State'.

### Billing/Shipping Handler
Expand All @@ -48,9 +48,10 @@ EXTRA_MODEL_FIELDS = (
),
(
"cartridge.shop.models.Order.total_tax",
"cartridge.shop.fields.MoneyField",
"DecimalField",
(u"Tax Total",),
{},
{"null": True, "blank": True, "max_digits": 10,
"decimal_places": 2},
),
)
```
Expand Down
1 change: 0 additions & 1 deletion cartridge_tax/models.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from decimal import Decimal

from django.db import models
from django.utils.translation import ugettext_lazy as _

from mezzanine.conf import settings
Expand Down

0 comments on commit f93ba83

Please sign in to comment.