~ubuntu-branches/ubuntu/quantal/python-django/quantal-security

« back to all changes in this revision

Viewing changes to django/contrib/comments/urls.py

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2010-05-21 07:52:55 UTC
  • mfrom: (1.3.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 28.
  • Revision ID: james.westby@ubuntu.com-20100521075255-ii78v1dyfmyu3uzx
Tags: upstream-1.2
ImportĀ upstreamĀ versionĀ 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
    url(r'^flagged/$',       'moderation.flag_done',        name='comments-flag-done'),
8
8
    url(r'^delete/(\d+)/$',  'moderation.delete',           name='comments-delete'),
9
9
    url(r'^deleted/$',       'moderation.delete_done',      name='comments-delete-done'),
10
 
    url(r'^moderate/$',      'moderation.moderation_queue', name='comments-moderation-queue'),
11
10
    url(r'^approve/(\d+)/$', 'moderation.approve',          name='comments-approve'),
12
11
    url(r'^approved/$',      'moderation.approve_done',     name='comments-approve-done'),
13
12
)