Browse Source

DIV-578

pull/160/head
Justin Johnson 8 years ago
parent
commit
ef81593ed2
3 changed files with 4 additions and 2 deletions
  1. +1
    -1
      edivorce/apps/core/templates/dashboard/print_form.html
  2. +0
    -0
      edivorce/apps/core/templates/pdf/form37.html
  3. +3
    -1
      edivorce/apps/core/views/pdf.py

+ 1
- 1
edivorce/apps/core/templates/dashboard/print_form.html View File

@ -184,7 +184,7 @@
</div>
</div>
<p class="review-buttons">
<a href="{% url 'pdf_form' '37_we' %}" class="btn btn-primary spinner"
<a href="{% url 'pdf_form' '37_joint' %}" class="btn btn-primary spinner"
target="_blank"><i class="fa fa-print" aria-hidden="true"></i>
Review and Print
</a>


edivorce/apps/core/templates/pdf/form37_we.html → edivorce/apps/core/templates/pdf/form37.html View File


+ 3
- 1
edivorce/apps/core/views/pdf.py View File

@ -30,7 +30,9 @@ def form(request, form_number):
responses['children'] = [actual[i] if i < total else {}
for i in range(0, max(under + over, total))]
if form_number == "37_claimant1":
if form_number == "37_joint":
form_number = "37"
elif form_number == "37_claimant1":
form_number = "37"
responses = __add_claimant_info(responses, '_you')
responses["which_claimant"] = "Claimant 1"


Loading…
Cancel
Save