diff --git a/README.md b/README.md index 1626512..bff2919 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/docassemble/ALAffidavitOfIndigency/data/questions/affidavit_of_indigency_supplement_body.yml b/docassemble/ALAffidavitOfIndigency/data/questions/affidavit_of_indigency_supplement_body.yml index c44c98e..0cd1f81 100644 --- a/docassemble/ALAffidavitOfIndigency/data/questions/affidavit_of_indigency_supplement_body.yml +++ b/docassemble/ALAffidavitOfIndigency/data/questions/affidavit_of_indigency_supplement_body.yml @@ -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 @@ -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 diff --git a/setup.py b/setup.py index 8e766ef..135317d 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ 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='litlab@suffolk.edu', @@ -54,7 +54,7 @@ def find_package_data(where='.', package='', exclude=standard_exclude, exclude_d 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'), )