~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to urls.py

  • Committer: franku
  • Date: 2018-09-12 07:45:35 UTC
  • mto: This revision was merged to the branch mainline in revision 500.
  • Revision ID: somal@arcor.de-20180912074535-4ucrq6kt9mqp8ai6
use the deleted username also for feeds; removed useless functions from feeds

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
from django.contrib import admin
5
5
admin.autodiscover()
6
6
 
7
 
from news.feeds import NewsPostsFeed
8
7
from django.views.generic.base import RedirectView
9
8
from django.views.generic import TemplateView
10
9
from django.contrib.syndication.views import Feed
28
27
    url(r'^accounts/', include('registration.backends.hmac.urls')),
29
28
    url('^', include('django.contrib.auth.urls')),
30
29
 
31
 
    # Feed for news
32
 
    url(r'^feeds/news/$', NewsPostsFeed()),
33
 
 
34
30
    # Formerly 3rd party
35
31
    url(r'^notification/', include('notification.urls')),
36
32