urls.py 351 B

12345678
  1. from django.conf.urls import include, patterns, url
  2. urlpatterns = patterns('misago.notifications.views',
  3. url(r'^notifications/$', 'notifications', name='notifications'),
  4. url(r'^notifications/event-sender/$', 'event_sender', name='notifications_event_sender'),
  5. url(r'^notifications/new/$', 'new_notification', name='new_notification'),
  6. )