Browse Source

DIV-208 changed positioning on claimant names to be in line with label

pull/160/head
Foley Lynn 8 years ago
parent
commit
9a5d9808c7
4 changed files with 9 additions and 14 deletions
  1. +1
    -3
      edivorce/apps/core/static/css/weasyprint.css
  2. +0
    -5
      edivorce/apps/core/static/js/main.js
  3. +0
    -1
      edivorce/apps/core/templates/partials/name_with_alias.html
  4. +8
    -5
      edivorce/apps/core/templates/pdf/form1.html

+ 1
- 3
edivorce/apps/core/static/css/weasyprint.css View File

@ -65,9 +65,7 @@ i.fa {
font-weight: bold;
font-size: 18px;
display: block;
}
.not-complete {
background-color: #fcf8e3;
margin: -22px 0 40px;
}
.table-fixed {


+ 0
- 5
edivorce/apps/core/static/js/main.js View File

@ -13,13 +13,8 @@ $('input:radio, input:checkbox').each(function () {
$(window).load(function(){
$('#questions_modal').modal('show');
console.log("loading");
});
$(function () {
$('[data-toggle="popover"]').popover()
})
$(function () {
$('[data-toggle="tooltip"]').tooltip({
container: 'body',


+ 0
- 1
edivorce/apps/core/templates/partials/name_with_alias.html View File

@ -1,5 +1,4 @@
{% load input_field %}
<br />
<span class="form-entry_claimant">
{{ name }}
{% if other_names and use_other_name == 'YES' %}


+ 8
- 5
edivorce/apps/core/templates/pdf/form1.html View File

@ -20,15 +20,18 @@
<body>
<div class="print-wrapper">
<h1 class="text-center">Form F1<br />(Rule 2-2 (2))</h1>
<h3 class="text-center">Form F1<br />(Rule 2-2 (2))</h3>
<p class="text-right">
Court File No.: <span class="form-entry not-complete">&nbsp;</span>
</p>
<p class="text-right">
Court Registry: {% if responses.court_registry_for_filing %} {{ responses.court_registry_for_filing }} {% else %} <span class="form-entry not-complete">&nbsp;</span> {% endif %}
</p>
<p class="text-center">
<em> In the Supreme Court of British Columbia </em>
<h3 class="text-center">
In the Supreme Court of British Columbia
</h3>
<p>
&nbsp;
</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 %}
@ -39,9 +42,9 @@
<p>
&nbsp;
</p>
<h2 class="text-center">
<h1 class="text-center">
NOTICE OF JOINT FAMILY CLAIM
</h2>
</h1>
<h3>1. Relationship history</h3>
<table class="table table-bordered">


Loading…
Cancel
Save