Skip to content

Commit

Permalink
misc PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jdungan committed Aug 13, 2016
1 parent 1cbd45f commit a9d0de9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions codesy/templates/base.html
@@ -1,4 +1,4 @@
{% load staticfiles %}
{% load staticfiles %}
{% load socialaccount %}
<!DOCTYPE html>
<html id="codesy-html" class="no-js" lang="en" data-stripe_key="{{ settings.STRIPE_PUBLIC_KEY }}" data-ga_id="{{ settings.GOOGLE_ANALYTICS_ID }}" data-ga_filename="analytics{% if settings.DEBUG %}_debug{% endif %}.js">
Expand Down Expand Up @@ -31,8 +31,8 @@
<li><a href="/claim-list">Claims</a></li>
<li><a href="/vote-list">Votes</a></li>
<hr/>
<li><a href="{% url 'card' %}">Offer</a></li>
<li><a href="{% url 'bank' %}">Payout</a></li>
<li><a href="{% url 'card' %}">Change Credit Card</a></li>
<li><a href="{% url 'bank' %}">Change Bank Account</a></li>
<hr/>
<li><a href="{% url 'account_logout' %}">Sign out</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion payments/templates/accept_terms.html
Expand Up @@ -14,7 +14,7 @@
<form
role="form"
class="form-horizontal"
action="/payments/terms"
action="{% url 'terms' %}"
method="POST">
{% csrf_token %}

Expand Down
6 changes: 3 additions & 3 deletions payments/urls.py
Expand Up @@ -3,9 +3,9 @@

urlpatterns = patterns(
'',
url(r'^events', views.StripeHookView.as_view(), name='events'),
url(r'^terms', views.AcceptTermsView.as_view(), name='terms'),
url(r'^identity', views.VerifyIdentityView.as_view(), name='identity'),
url(r'^events$', views.StripeHookView.as_view(), name='events'),
url(r'^terms$', views.AcceptTermsView.as_view(), name='terms'),
url(r'^identity$', views.VerifyIdentityView.as_view(), name='identity'),
url(r'^bank$', views.BankAccountView.as_view(), name='bank'),
url(r'^card$', views.CreditCardView.as_view(), name='card'),

Expand Down

0 comments on commit a9d0de9

Please sign in to comment.