My favorites | Sign in
Project Logo
Project hosting will be READ-ONLY Wednesday at 8am PST due to brief network maintenance.
                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from django.conf.urls.defaults import *

urlpatterns = patterns('',
# Example:
# (r'^kitaplar/', include('kitaplar.foo.urls')),
(r'^$', 'kitaplar.kitap.views.home'),
(r'^kitaplar/$', 'kitaplar.kitap.views.book'),
(r'^kitap/(\d+)/$', 'kitaplar.kitap.views.unique_book'),
(r'^yazarlar/$', 'kitaplar.kitap.views.author'),
(r'^yazar/(\d+)/$', 'kitaplar.kitap.views.unique_author'),
(r'^kutuphaneler/$', 'kitaplar.kitap.views.library'),
(r'^kutuphane/(\d+)/$', 'kitaplar.kitap.views.unique_library'),
# Uncomment this for admin:
(r'^admin/', include('django.contrib.admin.urls')),
)
Show details Hide details

Change log

r4 by altuntasserkan on Aug 05, 2007   Diff
[No log message]
Go to: 
Project members, sign in to write a code review

Older revisions

All revisions of this file

File info

Size: 630 bytes, 15 lines
Hosted by Google Code