diff options
author | Rob Austein <sra@hactrn.net> | 2016-07-18 11:46:22 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-07-18 11:46:22 +0000 |
commit | 73f92dd8ce37769310245e49982197772548e536 (patch) | |
tree | f7f33276c2ecd9751325d7843dd71a52a5840ec6 | |
parent | 86501361686231c6c5bed86d54a6cd9f24e473d9 (diff) |
Remove "import url from future" from Django templates. Fixes #823.
svn path=/branches/tk705/; revision=6446
-rw-r--r-- | rpki/gui/app/templates/base.html | 1 | ||||
-rw-r--r-- | rpki/gui/app/templates/registration/login.html | 1 | ||||
-rw-r--r-- | rpki/gui/app/templates/registration/password_reset_complete.html | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/rpki/gui/app/templates/base.html b/rpki/gui/app/templates/base.html index 08d0c112..338f5b64 100644 --- a/rpki/gui/app/templates/base.html +++ b/rpki/gui/app/templates/base.html @@ -1,4 +1,3 @@ -{% load url from future %} {% load app_extras %} <!DOCTYPE HTML> diff --git a/rpki/gui/app/templates/registration/login.html b/rpki/gui/app/templates/registration/login.html index 18b66b55..5d0482a3 100644 --- a/rpki/gui/app/templates/registration/login.html +++ b/rpki/gui/app/templates/registration/login.html @@ -1,5 +1,4 @@ {% extends "base.html" %} -{% load url from future %} {% block content %} <div class="page-header"> diff --git a/rpki/gui/app/templates/registration/password_reset_complete.html b/rpki/gui/app/templates/registration/password_reset_complete.html index d60c6b09..626139c7 100644 --- a/rpki/gui/app/templates/registration/password_reset_complete.html +++ b/rpki/gui/app/templates/registration/password_reset_complete.html @@ -1,5 +1,4 @@ {% extends "app/app_base.html" %} -{% load url from future %} {% block content %} <p>Your password has been set. You may go ahead and log in now.</p> |