Changeset - b76338c94181
[Not reviewed]
default
0 1 0
Branko Majic (branko) - 11 years ago 2013-04-14 13:01:24
branko@majic.rs
Styling updates to reflect 2SoD recommendations.
1 file changed with 6 insertions and 2 deletions:
0 comments (0 inline, 0 general)
projtest/projtest/urls.py
Show inline comments
 
# Django imports
 
from django.conf.urls import patterns, include, url
 
from django.contrib import admin
 
from django.http import HttpResponseRedirect
 

	
 
# Uncomment the next two lines to enable the admin:
 
from django.contrib import admin
 

	
 
# Auto-discover admin interface.
 
admin.autodiscover()
 

	
 

	
 
urlpatterns = patterns(
 
    '',
 
    # Examples:
 
@@ -20,3 +23,4 @@ urlpatterns = patterns(
 
    # Uncomment the next line to enable the admin:
 
    url(r'^admin/', include(admin.site.urls)),
 
)
 

	
0 comments (0 inline, 0 general)