Skip to content

Commit

Permalink
django-registration fixes (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrgn committed Jul 2, 2014
1 parent d4ed515 commit 690f77d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/front/templates/front/profile_form.html
Expand Up @@ -23,5 +23,5 @@ <h1>Benutzerprofil bearbeiten</h1>
<input type="hidden" name="next" value="{{ next }}">
</form>

<p>Möchtest du dein Passwort ändern? Das kannst du <a href="{% url 'auth_password_change' %}">hier</a> tun.</p>
<p>Möchtest du dein Passwort ändern? Das kannst du <a href="{% url 'password_change' %}">hier</a> tun.</p>
{% endblock %}
2 changes: 1 addition & 1 deletion apps/front/templates/registration/login.html
Expand Up @@ -42,7 +42,7 @@ <h1>Login</h1>
<input type="text" name="{{ form.username.name }}" id="id_{{ form.username.name }}" placeholder="{{ form.username.label }}">

<input type="password" name="{{ form.password.name }}" id="id_{{ form.password.name }}" placeholder="{{ form.password.label }}">
<a class="note" href="{% url 'auth_password_reset' %}">Passwort vergessen?</a>
<a class="note" href="{% url 'password_reset' %}">Passwort vergessen?</a>

<br clear="all" />

Expand Down
Expand Up @@ -6,7 +6,7 @@
Öffne die folgende Seite, um dein Passwort zu ändern:

{% block reset_link %}
{{ protocol }}://{{ domain }}{% url 'auth_password_reset_confirm' uidb36=uid token=token %}
{{ protocol }}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}
{% endblock %}

Cheers,
Expand Down
2 changes: 1 addition & 1 deletion requirements/base.txt
Expand Up @@ -8,7 +8,7 @@ Unipath==1.0

# Useful/important apps
django-messagegroups==0.3.0
https://bitbucket.org/dbrgn/django-registration/get/cee149d9e912.zip
https://bitbucket.org/dbrgn/django-registration/get/a221afa30efd.zip
django-sendfile==0.3.4
django-dajaxice-ng==0.5.6.5
django-model-utils==1.3.1
Expand Down

0 comments on commit 690f77d

Please sign in to comment.