Skip to content

Commit 8fa8e12

Browse files
committed
Merge branch 'docs' of github.com:cosmologist10/junction into docs
2 parents 3520859 + 1bf74a9 commit 8fa8e12

19 files changed

+55
-21
lines changed

junction/base/monkey.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ def patch_urlresolvers():
3636

3737
old_reverse = urlresolvers.reverse
3838

39-
4039
def new_reverse(viewname, urlconf=None, args=None, kwargs=None, current_app=None):
41-
path = old_reverse(viewname, urlconf=urlconf, args=args, kwargs=kwargs, current_app=current_app)
40+
path = old_reverse(viewname, urlconf=urlconf, args=args, kwargs=kwargs,
41+
current_app=current_app)
4242
if is_absolute_url(path):
4343
return path
4444

junction/templates/account/email.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% extends "account/base.html" %}
22
{% load i18n %}
3-
{% load url from future %}
3+
44

55
{% load django_bootstrap_breadcrumbs %}
66

junction/templates/account/email_confirm.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "account/base.html" %}
2-
{% load url from future %}
2+
33
{% load i18n %}
44
{% load account %}
55
{% load django_bootstrap_breadcrumbs %}

junction/templates/account/logout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "account/base.html" %}
2-
{% load url from future %}
2+
33
{% load i18n %}
44

55
{% load django_bootstrap_breadcrumbs %}

junction/templates/account/password_change.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "account/base.html" %}
2-
{% load url from future %}
2+
33
{% load i18n %}
44
{% load django_bootstrap_breadcrumbs %}
55

junction/templates/account/password_reset.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends "account/base.html" %}
22
{% load i18n %}
33
{% load account %}
4-
{% load url from future %}
4+
55
{% load django_bootstrap_breadcrumbs %}
66

77
{% block head_title %}{% trans "Password Reset" %} · {{ block.super }}{% endblock %}

junction/templates/account/password_reset_from_key.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "account/base.html" %}
2-
{% load url from future %}
2+
33
{% load django_bootstrap_breadcrumbs %}
44
{% load i18n %}
55

junction/templates/account/password_reset_from_key_done.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "account/base.html" %}
2-
{% load url from future %}
2+
33
{% load django_bootstrap_breadcrumbs %}
44
{% load i18n %}
55

junction/templates/account/password_set.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "account/base.html" %}
2-
{% load url from future %}
2+
33
{% load i18n %}
44
{% load django_bootstrap_breadcrumbs %}
55

junction/templates/account/signup.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% extends "account/base.html" %}
22
{% load i18n %}
3-
{% load url from future %}
3+
44
{% load django_bootstrap_breadcrumbs %}
55

66
{% block head_title %}{% trans "Sign Up" %} · {{ block.super }}{% endblock %}

0 commit comments

Comments
 (0)