view potd/urls.py @ 711:c09ed90c891b

Fix regression in messages that efb525863a75 broke. Changeset efb525863a75 broke the feature that auto-populated the To: field in a private message when you clicked on a user's PM button.
author Brian Neal <bgneal@gmail.com>
date Tue, 17 Sep 2013 18:17:28 -0500
parents ee87ea74d46b
children 5ba2508939f7
line wrap: on
line source
"""
URLs for the POTD application.
"""
from django.conf.urls import patterns, url

urlpatterns = patterns('potd.views',
    url(r'^$', 'view', name='potd-view'),
    url(r'^archive/(\d+)/$', 'archive', name='potd-archive'),
)