Another Step in the Quest to clean up the code base.
This commit is contained in:
@@ -1,19 +1,13 @@
|
||||
# -*- encoding: utf-8 -*-
|
||||
""" URLS to display the Riichi Mahjong Rankings and the Ladder system."""
|
||||
|
||||
"""
|
||||
Created on 03.10.2011
|
||||
|
||||
@author: christian
|
||||
"""
|
||||
from django.views.generic import RedirectView
|
||||
from django.conf.urls import url
|
||||
from django.views.generic import RedirectView
|
||||
|
||||
from . import views
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
url(r'^$', RedirectView.as_view(
|
||||
url='/ranking/mahjong-ladder/', permanent=True)
|
||||
),
|
||||
urlpatterns = [ # Ignore PyLintBear (C0103)
|
||||
url(r'^$',
|
||||
RedirectView.as_view(url='/ranking/mahjong-ladder/', permanent=True)),
|
||||
url(r'^event/(?P<event>[\d]+)/mahjong/$',
|
||||
views.EventHanchanList.as_view(), name="event-hanchan-list"),
|
||||
url(r'^event/(?P<event>[\d]+)/add-hanchan/$',
|
||||
|
||||
Reference in New Issue
Block a user