{% extends 'base.html' %}
|
|
|
|
{% block title %}{{ block.super }}: Overview{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container-wrapper">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-8 col-md-offset-2">
|
|
<div>
|
|
<ul>
|
|
<li>
|
|
<h2>Your Information</h2>
|
|
<div>
|
|
<ul>
|
|
<li style="display: flex"><a href="{% url 'prequalification' '01' %}">Qualifying Questions</a><p style="margin-left: 90px">{{prequalification}}</p></li>
|
|
<li style="display: flex"><a href="{% url 'form_steps' 'f1' '01_orders' %}">Step 1: What are you asking for?</a><p style="margin-left: 90px">{{which_orders}}</p></li>
|
|
<li style="display: flex"><a href="{% url 'form_steps' 'f1' '02_claimant' %}">Step 2: Your information</a><p style="margin-left: 90px">{{your_information}}</p></li>
|
|
<li style="display: flex"><a href="{% url 'form_steps' 'f1' '03_respondent' %}">Step 3: Your spouse</a><p style="margin-left: 90px">{{your_spouse}}</p></li>
|
|
<li style="display: flex"><a href="{% url 'form_steps' 'f1' '04_marriage' %}">Step 4: Your marriage</a><p style="margin-left: 90px">{{your_marriage}}</p></li>
|
|
<li style="display: flex"><a href="{% url 'form_steps' 'f1' '05_reason' %}">Step 5: Your separation</a><p style="margin-left: 90px">{{your_separation}}</p></li>
|
|
<li style="display: flex"><a href="{% url 'form_steps' 'f1' '06_support' %}">Step 6: Spousal support</a><p style="margin-left: 90px">{{spousal_support}}</p></li>
|
|
<li style="display: flex"><a href="{% url 'form_steps' 'f1' '07_property' %}">Step 7: Property and debt</a><p style="margin-left: 90px">{{property_and_debt}}</p></li>
|
|
<li style="display: flex"><a href="{% url 'form_steps' 'f1' '08_other_orders' %}">Step 8: Other orders</a><p style="margin-left: 90px">{{other_orders}}</p></li>
|
|
<li style="display: flex"><a href="{% url 'form_steps' 'f1' '09_other_questions' %}">Step 9: Other questions</a><p style="margin-left: 90px">{{other_questions}}</p></li>
|
|
<li style="display: flex"><a href="{% url 'form_steps' 'f1' '10_location' %}">Step 10: Filing locations</a><p style="margin-left: 90px">{{filing_locations}}</p></li>
|
|
<li style="display: flex"><a href="{% url 'form_steps' 'f1' '11_review' %}">Step 11: Review</a></li>
|
|
</ul>
|
|
</div>
|
|
</li>
|
|
<li>
|
|
<h2>Prepare your forms</h2>
|
|
<div>
|
|
<ul>
|
|
<li>
|
|
<p>
|
|
Notice of Joint Family Claim(F1)
|
|
<a href="{% url 'pdf_form' '1' %}?html">Preview</a> |
|
|
<a href="{% url 'pdf_form' '1' %}">Print</a>
|
|
</p>
|
|
</li>
|
|
<li>
|
|
<p>
|
|
Original Marriage Certificate or Registration of Marriage
|
|
<a href="#">Preview</a> |
|
|
<a href="#">Print</a>
|
|
</p>
|
|
</li>
|
|
<li>
|
|
<p>
|
|
Requisition (Form F35)
|
|
<a href="{% url 'pdf_form' '35' %}?html">Preview</a> |
|
|
<a href="{% url 'pdf_form' '35' %}">Print</a>
|
|
</p>
|
|
</li>
|
|
<li>
|
|
<p>
|
|
Draft Final Order (Form F52)
|
|
<a href="{% url 'pdf_form' '52' %}?html">Preview</a> |
|
|
<a href="{% url 'pdf_form' '52' %}">Print</a>
|
|
</p>
|
|
</li>
|
|
<li>
|
|
<p>
|
|
Certificate of Pleadings (F36)
|
|
<a href="{% url 'pdf_form' '36' %}?html">Preview</a> |
|
|
<a href="{% url 'pdf_form' '36' %}">Print</a>
|
|
</p>
|
|
</li>
|
|
<li>
|
|
<p>
|
|
Affidavit Desk Order Divorce (F38)
|
|
<a href="{% url 'pdf_form' '38' %}?html">Preview</a> |
|
|
<a href="{% url 'pdf_form' '38' %}">Print</a>
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% block sidebar %}
|
|
|
|
{% endblock %}
|