Browse Source

Fixed DIV-133 and DIV-144

pull/160/head
Charles Shin 8 years ago
parent
commit
7de854e739
4 changed files with 17 additions and 4 deletions
  1. +9
    -0
      edivorce/apps/core/static/js/controllers.js
  2. +3
    -3
      edivorce/apps/core/templates/prequalification/step_03.html
  3. +1
    -1
      edivorce/apps/core/templates/prequalification/step_05.html
  4. +4
    -0
      edivorce/apps/core/templates/question/11_review.html

+ 9
- 0
edivorce/apps/core/static/js/controllers.js View File

@ -20,6 +20,15 @@ var reveal = function(el) {
$(related_id).show();
}
}
if (el.prop('name') == "provide_certificate_later" || el.prop('name') == "original_marriage_certificate"){
if ($('input[name=provide_certificate_later]:checked').val() == 'NO' && $('input[name=original_marriage_certificate]:checked').val() == 'NO') {
$('#is_certificate_in_english').hide();
}
else {
$('#is_certificate_in_english').show();
}
}
};
// Controls Checkbox behaviour for children_financial_support


+ 3
- 3
edivorce/apps/core/templates/prequalification/step_03.html View File

@ -11,7 +11,7 @@
<h3>When did you and your spouse separate (legally this is referred to as living separate and apart)
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Living separate and apart</b><br /><br /><p>You or your spouse have decided to end the marriage. In general one separates by moving out.
However it is possible to be separated but still live under the same roof as long as either you our your spouse,
However, it is possible to be separated but still live under the same roof as long as either you our your spouse
have clearly communicated your intention for a permanent separation (and are starting to act upon it).</p>
<p>This could mean:</p><ul><li>You're living in separate rooms</li><li>You're sleeping in separate beds</li><li>There's no sexual relationship</li>" aria-hidden="true"></i>?
</h3>
@ -58,8 +58,8 @@
<div class="information-message bg-danger" id="separation_date_alert" hidden>
<p>
The date you entered indicates you've been separated for less than one year You can use this online tool to start working
on the divorce forms, however you will not be able to file your documents at the registry until
The date you entered indicates you've been separated for less than one year. You can use this online tool to start working
on the divorce forms, however, you will not be able to file your documents at the registry until
the one year separation period has passed.
</p>
<p>Under the Divorce Act, a divorce may be granted on one of three grounds:</p>


+ 1
- 1
edivorce/apps/core/templates/prequalification/step_05.html View File

@ -126,7 +126,7 @@
</div>
<div class="question-well">
<div class="question-well" id="is_certificate_in_english">
<h3>Is your marriage certificate or registration of marriage in English?</h3>
<div class="btn-radio-group" data-toggle="buttons">


+ 4
- 0
edivorce/apps/core/templates/question/11_review.html View File

@ -62,3 +62,7 @@
{% block formbuttons %}
<!-- no formbuttons -->
{% endblock %}
{% block sidebar %}
<!-- no sidebar -->
{% endblock %}

Loading…
Cancel
Save