Coverage for fickeep\urls.py : 89%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
path('', views.EntryPointView.as_view()),
path('fickeeper/notifications/', include('notifier.urls', namespace='notifier')), path('fickeeper/analyzer/', include('analyzer.urls', namespace='analyzer')), path('pages/', include('pages.urls', namespace='pages')),
re_path(r'^fickeeper/media-type/', include('media_types.urls', namespace='media_type')),
re_path(r'^fickeeper/fanfics/(?P<fanfic_id>['r'0-9]+)/', include('chapters.urls', namespace='chapters_fanfics')),
re_path(r'^fickeeper/fandoms/', include('fandoms.urls', namespace='fandoms')),
path('fickeeper/lists/', include('lists.urls', namespace='lists')),
path('fickeeper/fanfics/', include('fanfics.urls', namespace='fanfics')),
path('fickeeper/reviews/', include('reviews.urls', namespace='reviews')),
path('fickeeper/users/', include('users.urls')),
path('fickeeper/', include('common.urls', namespace='common')),
path('admin/', admin.site.urls),
re_path(r'^media/(?P<path>.*)$', serve, {'document_root': settings.MEDIA_ROOT}), re_path(r'^static/(?P<path>.*)$', serve, {'document_root': settings.STATIC_ROOT}),
]
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) |