Browse Source

DIV-837

pull/160/head
Justin Johnson 7 years ago
parent
commit
bc35ce4d52
3 changed files with 29 additions and 17 deletions
  1. +4
    -2
      edivorce/apps/core/templates/pdf/form1.html
  2. +9
    -2
      edivorce/apps/core/templates/pdf/form37.html
  3. +16
    -13
      edivorce/apps/core/templates/pdf/form38.html

+ 4
- 2
edivorce/apps/core/templates/pdf/form1.html View File

@ -37,10 +37,12 @@
   
</p> </p>
<p> <p>
Claimant 1:{% include "partials/name_with_alias.html" with name=responses.name_you use_other_name=responses.any_other_name_you other_names=responses.other_name_you class_name='form-entry_claimant' %}
<span class="claimant-label">Claimant 1:</span>
{% include "partials/name_with_alias.html" with name=responses.name_you use_other_name=responses.any_other_name_you other_names=responses.other_name_you class_name='form-entry_claimant' %}
</p> </p>
<p> <p>
Claimant 2:{% include "partials/name_with_alias.html" with name=responses.name_spouse use_other_name=responses.any_other_name_spouse other_names=responses.other_name_spouse class_name='form-entry_claimant' %}
<span class="claimant-label">Claimant 2:</span>
{% include "partials/name_with_alias.html" with name=responses.name_spouse use_other_name=responses.any_other_name_spouse other_names=responses.other_name_spouse class_name='form-entry_claimant' %}
</p> </p>
<p> <p>
&nbsp; &nbsp;


+ 9
- 2
edivorce/apps/core/templates/pdf/form37.html View File

@ -36,8 +36,15 @@
<p class="text-right"> <p class="text-right">
This is the <span class="form-entry-sm not-complete form-underline"></span> affidavit<br> This is the <span class="form-entry-sm not-complete form-underline"></span> affidavit<br>
of {% required responses.name_you %} and<br>
{% required responses.name_spouse %} in this case,<br>
of
{% if responses.which_claimant == 'both' or responses.which_claimant == 'Claimant 1' %}
{% required responses.name_you %}
{% endif %}
{% if responses.which_claimant == 'both' %}and<br>{% endif %}
{% if responses.which_claimant == 'both' or responses.which_claimant == 'Claimant 2' %}
{% required responses.name_spouse %}
{% endif %}
in this case,<br>
and was made on <span class="form-entry-md not-complete form-underline"></span> and was made on <span class="form-entry-md not-complete form-underline"></span>
</p> </p>


+ 16
- 13
edivorce/apps/core/templates/pdf/form38.html View File

@ -34,15 +34,17 @@
</p> </p>
<p class="text-right"> <p class="text-right">
This is the <span class="form-entry-sm not-complete form-underline"></span> affidavit
</p>
<p class="text-right">
of {% required responses.name_claimant %} in this case
</p>
<p class="text-right">
and was made on <span class="form-entry not-complete form-underline"></span>
This is the <span class="form-entry-sm not-complete form-underline"></span> affidavit<br>
of
{% if responses.which_claimant == 'both' or responses.which_claimant == 'Claimant 1' %}
{% required responses.name_you %}
{% endif %}
{% if responses.which_claimant == 'both' %}and<br>{% endif %}
{% if responses.which_claimant == 'both' or responses.which_claimant == 'Claimant 2' %}
{% required responses.name_spouse %}
{% endif %}
in this case,<br>
and was made on <span class="form-entry-md not-complete form-underline"></span>
</p> </p>
<p class="text-center"> <p class="text-center">
@ -103,7 +105,7 @@
{% required responses.address_to_send_official_document_postal_code_spouse size=100 trail=',' %} {% required responses.address_to_send_official_document_postal_code_spouse size=100 trail=',' %}
{% endif %} {% endif %}
<br />
{% required responses.occupation_spouse %},<br />
SWEAR (OR AFFIRM) THAT: SWEAR (OR AFFIRM) THAT:
</p> </p>
@ -152,14 +154,15 @@
family law case and family law case and
{% if responses.which_claimant == 'both' %}we{% else %}I{% endif %} {% if responses.which_claimant == 'both' %}we{% else %}I{% endif %}
have lived separate and apart from my spouse have lived separate and apart from my spouse
since {% required responses.separation_date|date_formatter %}, except:
since {% required responses.separation_date|date_formatter %}
{% multiple_values_to_list source=responses.reconciliation_period as periods %} {% multiple_values_to_list source=responses.reconciliation_period as periods %}
{% if periods != '[]' and responses.try_reconcile_after_separated == 'YES' %} {% if periods != '[]' and responses.try_reconcile_after_separated == 'YES' %}
, except:
{% for period in periods %} {% for period in periods %}
from {{ period | first |date_formatter }} from {{ period | first |date_formatter }}
to {{ period | last |date_formatter }}{% if not forloop.last %}, {% endif %} to {{ period | last |date_formatter }}{% if not forloop.last %}, {% endif %}
{% endfor %}.
{% else %}<span class="form-entry not-complete"></span>{% endif %}
{% endfor %}
{% endif %}.
</li> </li>
<li> <li>


Loading…
Cancel
Save