Finally get the last mention of sso.views.profile out

This commit is contained in:
2012-07-06 21:16:11 +01:00
parent 23498de3cb
commit 3a8226bb8e
2 changed files with 1 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ this is incorrect please raise a bug on the tracker.
{% endfor %} {% endfor %}
</table> </table>
<p><a href="{% url sso.views.profile %}">Return to your profile page</a></p> <p><a href="{% url sso-profile %}">Return to your profile page</a></p>
{% endif %} {% endif %}
{% endblock %} {% endblock %}

View File

@@ -28,6 +28,3 @@ urlpatterns = patterns('',
url(r'^address/$', views.UserIPAddressView.as_view(), name='sso-ipaddress'), url(r'^address/$', views.UserIPAddressView.as_view(), name='sso-ipaddress'),
) )
urlpatterns += patterns('django.views.generic.simple',
('^$', 'redirect_to', {'url': reverse_lazy('sso.views.profile')}),
)