diff --git a/conntrackt/urls.py b/conntrackt/urls.py --- a/conntrackt/urls.py +++ b/conntrackt/urls.py @@ -33,7 +33,6 @@ urlpatterns = patterns( # View for deleting a location. url(r'^location/(?P\d+)/remove/$', LocationDeleteView.as_view(), name="location_delete"), - # View for showing information about an entity. url(r'^entity/(?P\d+)/$', EntityView.as_view(), name='entity'), @@ -64,6 +63,7 @@ urlpatterns = patterns( url(r'^project/(?P\d+)/iptables/$', project_iptables, name="project_iptables"), # View for rendering zip file with iptables rules for all entities in a project for a specific location. url(r'^project/(?P\d+)/location/(?P\d+)/iptables/$', project_iptables, name="project_location_iptables"), + # Views for logging-in/out the users. url(r'^login/$', login, {'template_name': 'conntrackt/login.html'}, name="login"), url(r'^logout/$', logout, name="logout"),