~harmony-devs/harmony/tags

« back to all changes in this revision

Viewing changes to harmony/urls.py

  • Committer: Lucas Vogelsang
  • Date: 2006-08-02 14:03:41 UTC
  • Revision ID: lucasvo@vincisolutions.ch-20060802140341-e58aec6442ff96b3
changed structure of urls.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
urlpatterns = patterns('',
4
4
    # Example:
5
 
     (r'^tags/list/', 'harmony.meta.views.list_tags'),
6
 
     (r'^tags/(?P<tag_id>\d+)/(?P<content_object>\d+)/$', 'harmony.meta.views.list_objects'),
 
5
     (r'^tags/', include('harmony.meta.urls')),
7
6
    # Uncomment this for admin:
8
7
     (r'^admin/', include('django.contrib.admin.urls')),
9
8
)