##// END OF EJS Templates
Task #716: ABS Views, plot beams patterns with OverJRO and overJroShow scripts...
Task #716: ABS Views, plot beams patterns with OverJRO and overJroShow scripts git-svn-id: http://jro-dev.igp.gob.pe/svn/jro_hard/radarsys/trunk/webapp@201 aa17d016-51d5-4e8b-934c-7b2bbb1bbe71

File last commit:

r172:a641bec15a9b
r178:6920059c9c16
Show More
urls.py
7 lines | 276 B | text/x-python | PythonLexer
from django.conf.urls import url
from django.contrib.auth import views as auth_views
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'),
)