~harmony-devs/harmony/tags

« back to all changes in this revision

Viewing changes to harmony/meta/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:
 
1
from django.conf.urls.defaults import *
 
2
 
 
3
urlpatterns = patterns('',
 
4
    # Example:
 
5
     (r'list/', 'harmony.meta.views.list_tags'),
 
6
     (r'(?P<tag_id>\d+)/(?P<content_object>\d+)/$', 'harmony.meta.views.list_objects'),
 
7
)