Browse Source

DIV-1242: Add tooltips to success page

pull/172/head
ariannedee 5 years ago
parent
commit
bda234493f
3 changed files with 28 additions and 2 deletions
  1. +13
    -0
      edivorce/apps/core/templates/partials/tooltips/court_order.html
  2. +13
    -0
      edivorce/apps/core/templates/partials/tooltips/separation_agreement.html
  3. +2
    -2
      edivorce/apps/core/templates/success.html

+ 13
- 0
edivorce/apps/core/templates/partials/tooltips/court_order.html View File

@ -0,0 +1,13 @@
{% extends "partials/tooltips/base.html" %}
{% block title %}
Court Order
{% endblock %}
{% block inner %}
Put text here
{% endblock %}
{% block label %}
Court order
{% endblock %}

+ 13
- 0
edivorce/apps/core/templates/partials/tooltips/separation_agreement.html View File

@ -0,0 +1,13 @@
{% extends "partials/tooltips/base.html" %}
{% block title %}
Separation Agreement
{% endblock %}
{% block inner %}
Put text here
{% endblock %}
{% block label %}
Separation agreement
{% endblock %}

+ 2
- 2
edivorce/apps/core/templates/success.html View File

@ -11,8 +11,8 @@
<p>You will need the following documents to move forward with the divorce request:</p>
<ul>
<li>Marriage certificate</li>
<li>Separation agreement (if applicable)</li>
<li>Court order (if applicable)</li>
<li>{% include "partials/tooltips/separation_agreement.html" %} (if applicable)</li>
<li>{% include "partials/tooltips/court_order.html" %} (if applicable)</li>
</ul>
</div>


Loading…
Cancel
Save