Browse Source

DIV-212 created legal support page and linked it from header

pull/160/head
Foley Lynn 8 years ago
parent
commit
22876e5c45
6 changed files with 66 additions and 5 deletions
  1. +1
    -1
      edivorce/apps/core/static/css/main.css
  2. +4
    -1
      edivorce/apps/core/static/css/main.scss
  3. +1
    -3
      edivorce/apps/core/templates/base.html
  4. +56
    -0
      edivorce/apps/core/templates/legal.html
  5. +1
    -0
      edivorce/apps/core/urls.py
  6. +3
    -0
      edivorce/apps/core/views/main.py

+ 1
- 1
edivorce/apps/core/static/css/main.css
File diff suppressed because it is too large
View File


+ 4
- 1
edivorce/apps/core/static/css/main.scss View File

@ -106,7 +106,10 @@ a {
line-height: 28px; line-height: 28px;
} }
img {
max-width: 100%;
height: auto;
}
// Bootstrap Overrides // Bootstrap Overrides


+ 1
- 3
edivorce/apps/core/templates/base.html View File

@ -7,8 +7,6 @@
<title>{% block title %}Ministry of Justice e-Divorce{% endblock %}</title> <title>{% block title %}Ministry of Justice e-Divorce{% endblock %}</title>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="{% static "css/bootstrap.min.css" %}"> <link rel="stylesheet" type="text/css" href="{% static "css/bootstrap.min.css" %}">
<link rel="stylesheet" type="text/css" href="{% static "css/bootstrap-datepicker3.min.css" %}"> <link rel="stylesheet" type="text/css" href="{% static "css/bootstrap-datepicker3.min.css" %}">
<link rel="stylesheet" type="text/css" href="{% static "css/font-awesome.min.css" %}"> <link rel="stylesheet" type="text/css" href="{% static "css/font-awesome.min.css" %}">
@ -80,7 +78,7 @@
</div> </div>
{% endblock %} {% endblock %}
<div class="mid_banner-link"> <div class="mid_banner-link">
<a href="#"><i class="fa fa-balance-scale" aria-hidden="true"></i>Legal Support</a>
<a href="{% url 'legal' %}"><i class="fa fa-balance-scale" aria-hidden="true"></i>Legal Support</a>
</div> </div>
</div> </div>
</div> </div>


+ 56
- 0
edivorce/apps/core/templates/legal.html View File

@ -0,0 +1,56 @@
{% extends 'base.html' %}
{% block title %}{{ block.super }}: Legal Support{% endblock %}
{% block content %}
<h3>Do I need a lawyer to get a separation and divorce?</h3>
<p>You are not required to have a lawyer to get a separation or divorce, but depending on how complex your family issues are, it may be helpful to have a lawyer help you.</p>
<p>If your divorce is uncontested &mdash; you both agree to the divorce and you are able to sort out your parenting plans and support issues as well as the division of property &mdash; you may proceed with the divorce on your own.</p>
<p>However, a family lawyer is a good source of information about separation and divorce and can also give you legal advice about what your rights and responsibilities are under the law. If you need help settling your family law disputes, or if you do need to go to court, a family lawyer can help.</p>
<h3Where can I find a lawyer?</h3>
<p>There may be times when you want legal advice. There are many options available to you, a few are:</p>
<h4>Lawyer Referral Service in Vancouver:</h4>
<p>This service is provided by the Canadian Bar Association and can refer you to a lawyer who will confer with you for up to 30 minutes for a nominal fee. Contact information, 1-800-663-1919 or their&nbsp;<a href="http://cbabc.org/For-the-Public/Lawyer-Referral-Service" target="_blank">website</a>.</p>
<h4>Justice Access Centre:</h4>
<p>You can visit the Justice Access Centre in <a href="http://www2.gov.bc.ca/gov/content/justice/about-bcs-justice-system/jac/how-to-find-us/vancouver" target="_blank">Vancouver</a>, <a href="http://www2.gov.bc.ca/gov/content/justice/about-bcs-justice-system/jac/how-to-find-us/nanaimo" target="_blank">Nanaimo</a>, and <a href="http://www2.gov.bc.ca/gov/content/justice/about-bcs-justice-system/jac/how-to-find-us/victoria" target="_blank">Victoria</a>. They can refer you to services and resources that are available for your situation.</p>
<p>If you think you will want legal help for only <strong><em>part</em></strong> of your separation or divorce, you can look for a lawyer that offers &ldquo;unbundled&rdquo; services. The&nbsp;<a href="http://www.clicklaw.bc.ca/helpmap/service/1197" target="_blank">BC Family Law Unbundling Roster (HelpMap)</a>&nbsp;is a list of legal professionals near you who offer unbundled services. Many also offer their services remotely, through telephone, webconferencing or other tools.</p>
<p>&nbsp;</p>
<h2>Where can I find help to file my divorce on my own?</h2>
<h4>Justice Access Centre:</h4>
<p>You can visit the Justice Access Centre in <a href="http://www2.gov.bc.ca/gov/content/justice/about-bcs-justice-system/jac/how-to-find-us/vancouver" target="_blank">Vancouver</a>, <a href="http://www2.gov.bc.ca/gov/content/justice/about-bcs-justice-system/jac/how-to-find-us/nanaimo" target="_blank">Nanaimo</a>, and <a href="http://www2.gov.bc.ca/gov/content/justice/about-bcs-justice-system/jac/how-to-find-us/victoria" target="_blank">Victoria</a>&nbsp;for in-person help. They can help assess what you need and provide information about your legal and related issues.</p>
<h4>Online resources:</h4>
<p>You may want to look at the <a href="http://www.familylaw.lss.bc.ca/guides/divorce/" target="_blank">Divorce self-help kit</a> on the Family Law in British Columbia website for a step-by-step guide. You can also visit <a href="https://www.clicklaw.bc.ca/" target="_blank">ClickLaw</a> and the <a href="http://www.justiceeducation.ca/" target="_blank">Justice Education Society</a> for online legal information.</p>
<div class="form-buttons">
<a class="btn btn-success btn-lg" onclick="history.go(-1);"><i class="fa fa-arrow-circle-o-left" aria-hidden="true"></i>&nbsp; Go back</a>
</div>
{% endblock %}
{% block formbuttons %}
<!-- no formbuttons -->
{% endblock %}
{% block sidebarNav %}
<!-- no sidebar -->
{% endblock %}
{% block sidebar %}
<!-- no sidebar -->
{% endblock %}

+ 1
- 0
edivorce/apps/core/urls.py View File

@ -14,6 +14,7 @@ urlpatterns = [
url(r'^success', main.success, name="success"), url(r'^success', main.success, name="success"),
url(r'^savepdf', main.savepdf, name="savepdf"), url(r'^savepdf', main.savepdf, name="savepdf"),
url(r'^health$', system.health), url(r'^health$', system.health),
url(r'^legal', main.legal, name="legal"),
# todo: remove these 'headers' lines once SMGOV headers are working # todo: remove these 'headers' lines once SMGOV headers are working
url(r'^divorce/headers$', system.headers), url(r'^divorce/headers$', system.headers),


+ 3
- 0
edivorce/apps/core/views/main.py View File

@ -36,6 +36,9 @@ def success(request):
else: else:
return render(request, 'success.html', context={'register_url': settings.REGISTER_URL}) return render(request, 'success.html', context={'register_url': settings.REGISTER_URL})
@bceid_required
def legal(request):
return render(request, 'legal.html', context={'active_page': 'legal'})
@bceid_required @bceid_required
def savepdf(request): def savepdf(request):


Loading…
Cancel
Save