GBLS / docassemble-MAEvictionDefense

A guided interview for pro se eviction defense in Massachusetts. Generates an Answer form, Request for Discovery, and accompanying forms and motions.
https://www.gbls.org
Other
15 stars 14 forks source link

Extra period / space #260

Open miabonardi opened 9 months ago

miabonardi commented 9 months ago

Screen Shot 2023-12-04 at 2 07 07 PM

Screen Shot 2023-12-04 at 2 12 26 PM

miabonardi commented 9 months ago

Proposed change:

id: nonpayment cure
question: |
  Paying the money owed
subquestion: |
  % if tenancy_type == 'lease':
  You may have the right to stop the eviction if you paid all of the money that you owed the landlord no later than the answer date, ${case.answer_date}.
  % else:
  You may have the right to stop the eviction if you paid all of the money that you owed the landlord no later than 10 days after you got the notice to quit${', on ' + str(date_received_ntq.plus(days=10)) if (defined('date_received_ntq') and date_received_ntq != '') else ''}.
  % endifid: nonpayment cure
question: |
  Paying the money owed
subquestion: |
  % if tenancy_type == 'lease':
  You may have the right to stop the eviction if you paid all of the money that you owed the landlord no later than the answer date, ${case.answer_date}.
  % else:
  You may have the right to stop the eviction if you paid all of the money that you owed the landlord no later than 10 days after you got the notice to quit${', on ' + str(date_received_ntq.plus(days=10)) if (defined('date_received_ntq') and date_received_ntq != '') else ''}.
  % endif

Instead of: https://github.com/GBLS/docassemble-MAEvictionDefense/blob/6dae7c816a716c24e4a44d1e77e17f3743d4ecfc/docassemble/MAEvictionDefense/data/questions/eviction.en.yml#L1626-L1638

Proposed change:

id: waiver
question: |
  Waiver / creation of a new tenancy
subquestion: |
  In some cases actions you or your landlord take can make the notice to quit invalid, or "waive" it. Look at your notice to quit
  to answer this question.

  % if (defined('date_received_ntq') and date_received_ntq):
  Think about the time period after you first got a notice to quit, on ${format_date(date_received_ntq)}.
  % else: 
  Think about the time period after you first got a notice to quit.
  % endif
  Check any statements below that apply to you.

Instead of: https://github.com/GBLS/docassemble-MAEvictionDefense/blob/6dae7c816a716c24e4a44d1e77e17f3743d4ecfc/docassemble/MAEvictionDefense/data/questions/eviction.en.yml#L1512-L1526