Skip to content
This repository has been archived by the owner on Jun 4, 2021. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:cfpb/retirement
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuck Werner committed Jul 8, 2015
2 parents 759141e + 48e15fc commit d24f1c1
Show file tree
Hide file tree
Showing 97 changed files with 15 additions and 16 deletions.
Expand Up @@ -444,7 +444,7 @@ form {
#claiming-social-security .step-three .selector-container {
overflow: hidden;
position: relative;
background: #ffffff url('/retirement/static/images/select.png') no-repeat right 0;
background: #ffffff url('/static/retirement/images/select.png') no-repeat right 0;
border: solid 1px #d0d0ce;
height: 32px;
font-family: "AvenirNextLTW01-Medium", Arial, sans-serif;
Expand Down
16 changes: 8 additions & 8 deletions retirement_api/templates/base.html
@@ -1,5 +1,6 @@
<!DOCTYPE html>
{% load i18n %}
{% load staticfiles %}
{% trans page.title as TITLE %}
{% trans "Yes" as YES %}
{% trans "No" as NO %}
Expand Down Expand Up @@ -73,10 +74,9 @@
<link rel="stylesheet" href="/wp-content/themes/cfpb_nemo/_/c/styles.css?ver=v4.2.10v4.2.24">



<!-- <link rel="stylesheet" href="{% static "retirement/static/landing/css/landing.css" %}"> -->



<link rel="stylesheet" href="/retirement/static/landing/css/landing.css">
<link rel='stylesheet' id='cfpb_icon_font-css' href="/wp-content/themes/cfpb_nemo/_/cfpb-icon-font/css/icons.css?ver=all" type="text/css" media="all">
<!--[if IE 7]>
<link rel="stylesheet" id="cfpb_icon_font_ie7-css" href="/wp-content/themes/cfpb_nemo/_/cfpb-icon-font/css/icons-ie7.css?ver=all" type="text/css" media="all" />
Expand All @@ -87,10 +87,10 @@
<link rel="alternate" type="application/rss+xml" title="Consumer Financial Protection Bureau &raquo; Feed" href="/feed/" />
<link rel="alternate" type="application/rss+xml" title="Consumer Financial Protection Bureau &raquo; Comments Feed" href="/comments/feed/" />

<link rel="stylesheet" href="/retirement/static/css/main.css">
<link rel="stylesheet" href="/retirement/static/css/claiming.css">
<script src="/retirement/static/js/raphael-min.js"></script>
<script src="/retirement/static/js/claiming-social-security.js"></script>
<link rel="stylesheet" href="{% static "retirement/css/main.css" %}">
<link rel="stylesheet" href="{% static "retirement/css/claiming.css" %}">
<script src="{% static "retirement/js/raphael-min.js" %}"></script>
<script src="{% static "retirement/js/claiming-social-security.js" %}"></script>

<script src="/static/js/analytics.js?ver=v4.2.10v4.2.24"></script>

Expand Down Expand Up @@ -177,7 +177,7 @@
<script type="text/javascript" src="/static/agreements/js/chosen.jquery.js?ver=v4.2.10v4.2.24"></script>

<!-- Responsive menu JS -->
<script src="/retirement/static/js/nemo.js"></script>
<script src="{% static "retirement/js/nemo.js" %}"></script>


{% block foot_js %}{% endblock %}
Expand Down
12 changes: 6 additions & 6 deletions retirement_api/templates/claiming.html
@@ -1,6 +1,6 @@
{% extends base_template %}
{% load i18n %}
{% load static %}
{% load staticfiles %}
{% block content %}
<script>
if(document.getElementsByTagName("body")) {
Expand Down Expand Up @@ -201,7 +201,7 @@ <h2><strong>{{STEP}} 2: </strong>{% trans page.step2.title %}</h2>
<p class="question h3">{% trans page.step2.instructions %}</p>
</div>
<div class="content-l_col content-l_col-1-3 question question-married">
<img src="/retirement/static/images/lifestyle-married.png" class="lifestyle-img">
<img src="{% static "retirement/images/lifestyle-married.png" %}" class="lifestyle-img">
<div class="lifestyle-question_container">
<hr>
<h3 class="lifestyle-question">{% trans questions.marriage.question %}</h3>
Expand All @@ -223,7 +223,7 @@ <h4>{% trans questions.marriage.answer_unsure_a_subhed|safe %}</h4>
</div>
</div>
<div class="content-l_col content-l_col-1-3 question question-working age-split">
<img src="/retirement/static/images/lifestyle-working.png" class="lifestyle-img">
<img src="{% static "retirement/images/lifestyle-working.png" %}" class="lifestyle-img">
<div class="lifestyle-question_container">
<hr>
<h3 class="lifestyle-question">{% trans questions.sixties.question %}</h3>
Expand Down Expand Up @@ -272,7 +272,7 @@ <h4>{% trans questions.sixties.answer_unsure_b_subhed|safe %}</h4>
</div>
<div class="content-l step-two">
<div class="content-l_col content-l_col-1-3 question question-expenses age-split">
<img src="/retirement/static/images/lifestyle-expenses.png" class="lifestyle-img">
<img src="{% static "retirement/images/lifestyle-expenses.png" %}" class="lifestyle-img">
<div class="lifestyle-question_container">
<hr>
<h3 class="lifestyle-question">{% trans questions.expenses.question %}</h3>
Expand Down Expand Up @@ -306,7 +306,7 @@ <h4>{% trans questions.expenses.answer_unsure_b_subhed|safe %}</h4>
</div>
</div>
<div class="content-l_col content-l_col-1-3 question question-income age-split">
<img src="/retirement/static/images/lifestyle-income.png" class="lifestyle-img">
<img src="{% static "retirement/images/lifestyle-income.png" %}" class="lifestyle-img">
<div class="lifestyle-question_container">
<hr>
<h3 class="lifestyle-question">{% trans questions.income.question %}</h3>
Expand Down Expand Up @@ -361,7 +361,7 @@ <h4>{% trans questions.income.answer_unsure_b_subhed|safe %}</h4>
</div>
</div>
<div class="content-l_col content-l_col-1-3 question question-longevity">
<img src="/retirement/static/images/lifestyle-longevity.png" class="lifestyle-img">
<img src="{% static "retirement/images/lifestyle-longevity.png" %}" class="lifestyle-img">
<div class="lifestyle-question_container">
<hr>
<h3 class="lifestyle-question">{% trans questions.longlife.question %}</h3>
Expand Down
1 change: 0 additions & 1 deletion retirement_api/urls.py
Expand Up @@ -13,7 +13,6 @@
url(r'^retirement-api/get-retirement-age/(?P<birth_year>\d+)/$', 'retirement_api.views.get_full_retirement_age', name='get_full_retirement_age'),
url(r'^claiming-social-security/$', 'retirement_api.views.claiming', name='claiming'),
url(r'^claiming-social-security/es/$', 'retirement_api.views.claiming', {'es': True}),
url(r'^retirement/static\/(?P<path>.*)/$', 'django.contrib.staticfiles.views.serve')
)

urlpatterns += staticfiles_urlpatterns()

0 comments on commit d24f1c1

Please sign in to comment.