##// END OF EJS Templates
Add view confirmation for write/chng beam methods
Add view confirmation for write/chng beam methods

File last commit:

r172:a641bec15a9b
r333:176c9ea0dbf6
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 )