Skip to content
Snippets Groups Projects
Commit cdaaa422 authored by Dan Braghis's avatar Dan Braghis
Browse files

Change user namespace to account

as per ticket update
parent cae62f7d
No related branches found
No related tags found
No related merge requests found
...@@ -5,5 +5,5 @@ from .users import urls as users_urls ...@@ -5,5 +5,5 @@ from .users import urls as users_urls
urlpatterns = [ urlpatterns = [
url(r'^apply/', include(funds_urls)), url(r'^apply/', include(funds_urls)),
url(r'^user/', include(users_urls, namespace='users')), url(r'^account/', include(users_urls, namespace='users')),
] ]
...@@ -22,7 +22,6 @@ ...@@ -22,7 +22,6 @@
{% plural %} {% plural %}
Please correct the errors below. Please correct the errors below.
{% endblocktrans %} {% endblocktrans %}
</div> </div>
{% endif %} {% endif %}
...@@ -30,9 +29,9 @@ ...@@ -30,9 +29,9 @@
{% csrf_token %} {% csrf_token %}
{% for field in form %} {% for field in form %}
{{ field.errors }} {{ field.errors }}
{{ field.label_tag }} {{ field.label_tag }}
{{ field }} {{ field }}
{% endfor %} {% endfor %}
<button type="submit">{% trans 'Reset password' %}</button> <button type="submit">{% trans 'Reset password' %}</button>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment