Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extra period / space #260

Open
miabonardi opened this issue Dec 4, 2023 · 1 comment
Open

Extra period / space #260

miabonardi opened this issue Dec 4, 2023 · 1 comment

Comments

@miabonardi
Copy link

miabonardi commented Dec 4, 2023

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

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

@miabonardi miabonardi changed the title Extra period Extra period / space Dec 4, 2023
@miabonardi
Copy link
Author

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:

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

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:

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant