public
Description: An addition to django that allows better presentation of date strings in a local way.
Homepage: http://code.google.com/p/django-localdates/
Clone URL: git://github.com/orestis/django-localdates.git
Click here to lend your support to: django-localdates and make a donation at www.pledgie.com !
100644 14 lines (7 sloc) 0.231 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from django.conf.urls.defaults import *
 
urlpatterns = patterns('',
    # Example:
    
    # Uncomment this for admin:
     # (r'^admin/', include('django.contrib.admin.urls')),
     (r'.*', 'example.views.index')
     
     
)