##// END OF EJS Templates
Update Views y several improvements
Update Views y several improvements

File last commit:

r172:a641bec15a9b
r316:0d39f71bbf42
Show More
urls.py
7 lines | 276 B | text/x-python | PythonLexer
Juan C. Espinoza
Update code for django 1.10, python 3 and latest third party packages, review operation view ...
r172 from django.conf.urls import url
Juan C. Espinoza
Proyecto base en Django (refs #259) ...
r0 from django.contrib.auth import views as auth_views
Juan C. Espinoza
Update code for django 1.10, python 3 and latest third party packages, review operation view ...
r172 urlpatterns = (
url(r'^logout/$', auth_views.logout, {'next_page': '/'}, name='url_logout'),
url(r'^login/$', auth_views.login, {'template_name': 'login.html'}, name='url_login'),
Juan C. Espinoza
Proyecto base en Django (refs #259) ...
r0 )