Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Massachusetts Application for Indigency

This is a Docassemble interview to complete a Massachusetts application for indigency (request for a fee waiver) form online. The live interview can be found at [courtformsonline.org/other/#indigency](https://courtformsonline.org/other/#indigency)
This is a Docassemble interview to complete a Massachusetts application for indigency (request for a fee waiver) form online. The live interview can be found at [courtformsonline.org/other/#indigency](https://courtformsonline.org/ma/forms/affidavit-of-indigency-fee-waiver).

This interview was forked from [SuffolkLITLab/docassemble-AffidavitofIndigencyMAVC](https://github.com/SuffolkLITLab/docassemble-AffidavitofIndigencyMAVC) to migrate it to the ALDocument class.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ code: |
if affidavit_is_standalone:
nav.set_section('review_assets_and_debts')
user_owns_home
user_has_home_debt
if user_has_home_debt:
user_home_debt
user_owns_car
users[0].accounts.gather()
taxes_on_form
Expand Down Expand Up @@ -691,13 +694,16 @@ fields:
- "What is the value of the home?": user_home_value
show if: user_owns_home
datatype: currency
required: True
min: 0
- Are there any remaining loans on the home?: user_has_home_debt
show if: user_owns_home
datatype: yesnoradio
required: True
- How much do you have to pay on the remaining loans?: user_home_debt
show if: user_has_home_debt
datatype: currency
required: True
min: 0
---
id: car ownership
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ def find_package_data(where='.', package='', exclude=standard_exclude, exclude_d
setup(name='docassemble.ALAffidavitOfIndigency',
version='2.1.6',
description=('The Massachusetts Affidavit of Indigency, or Fee waiver form'),
long_description='# Massachusetts Application for Indigency\r\n\r\nThis is a Docassemble interview to complete a Massachusetts application for indigency (request for a fee waiver) form online. The live interview can be found at [courtformsonline.org/other/#indigency](https://courtformsonline.org/other/#indigency)\r\n\r\nThis interview was forked from [SuffolkLITLab/docassemble-AffidavitofIndigencyMAVC](https://github.com/SuffolkLITLab/docassemble-AffidavitofIndigencyMAVC) to migrate it to the ALDocument class.\r\n',
long_description='# Massachusetts Application for Indigency\r\n\r\nThis is a Docassemble interview to complete a Massachusetts application for indigency (request for a fee waiver) form online. The live interview can be found at [courtformsonline.org/ma/forms/affidavit-of-indigency-fee-waiver](https://courtformsonline.org/ma/forms/affidavit-of-indigency-fee-waiver)\r\n\r\nThis interview was forked from [SuffolkLITLab/docassemble-AffidavitofIndigencyMAVC](https://github.com/SuffolkLITLab/docassemble-AffidavitofIndigencyMAVC) to migrate it to the ALDocument class.\r\n',
long_description_content_type='text/markdown',
author='Suffolk LIT Lab',
author_email='[email protected]',
license='The MIT License (MIT)',
url='https://courtformsonline.org',
packages=find_namespace_packages(),
install_requires=['docassemble.AssemblyLine', 'docassemble.MassAccess', 'docassemble.PovertyScale', 'docassemble.ALToolbox>=0.7.1', 'docassemble.ALMassachusetts>=0.1.2',
'docassemble.GithubFeedbackForm>=0.2.1'],
'docassemble.GithubFeedbackForm>=0.2.1'],
zip_safe=False,
package_data=find_package_data(where='docassemble/ALAffidavitOfIndigency/', package='docassemble.ALAffidavitOfIndigency'),
)
Expand Down
Loading