Skip to content

Commit

Permalink
Add labels and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Doupe committed Mar 8, 2018
1 parent 287eae3 commit 7a05800
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ Go
[here](https://github.com/OpenSourcePolicyCenter/PolicyBrain/pulls?q=is%3Apr+is%3Aclosed)
for a complete commit history.

Release 1.4.4 on 2018-03-08
----------------------------
**Major Changes**
- None

**Minor Changes**
- None

**Bug Fixes**
- [#840](https://github.com/OpenSourcePolicyCenter/PolicyBrain/pull/840) - Add column ID's back to PolicyBrain - Hank Doupe

Release 1.4.3 on 2018-03-07
----------------------------
**Major Changes**
Expand Down
6 changes: 3 additions & 3 deletions webapp/apps/taxbrain/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,14 @@ def set_form(defaults):
checkbox = forms.CheckboxInput(attrs=attrs, check_test=bool_like)
widgets[field.id] = checkbox
update_fields[field.id] = forms.BooleanField(
label='',
label=field.label,
widget=widgets[field.id],
required=False
)
else:
widgets[field.id] = forms.TextInput(attrs=attrs)
update_fields[field.id] = forms.fields.CharField(
label='',
label=field.label,
widget=widgets[field.id],
required=False
)
Expand All @@ -184,7 +184,7 @@ def set_form(defaults):

widgets[field.id] = forms.NullBooleanSelect(attrs=attrs)
update_fields[field.id] = forms.NullBooleanField(
label='',
label=field.label,
widget=widgets[field.id],
required=False
)
Expand Down
2 changes: 1 addition & 1 deletion webapp/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
]


WEBAPP_VERSION = "1.4.3"
WEBAPP_VERSION = "1.4.4"

# Application definition

Expand Down

0 comments on commit 7a05800

Please sign in to comment.