from django.conf import settings from django.conf.urls import patterns, include, url # Setup Django admin to work with Misago auth from django.contrib import admin from misago.users.forms.auth import AdminAuthenticationForm admin.autodiscover() admin.site.login_form = AdminAuthenticationForm urlpatterns = patterns('', url(r'^', include('misago.urls', namespace='misago')), # Uncomment next line if you plan to use Django admin for 3rd party apps #url(r'^django-admin/', include(admin.site.urls)), ) # Serve static and media files in development from django.conf.urls.static import static urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) # Error Handlers # Misago needs those handlers to deal with errors raised by it's middlewares # If you replace those handlers with custom ones, make sure you decorate them # functions with shared_403_exception_handler or shared_404_exception_handler # decorators that are defined in misago.views.errorpages module! handler403 = 'misago.views.errorpages.permission_denied' handler404 = 'misago.views.errorpages.page_not_found'