Files @ e6c623a69ca9
Branch filter:

Location: symposion_app/pinaxcon/urls.py

Christopher Neugebauer
Refactors all speaker-facing forms and editing pages to use the new theme (#27)

* Themes speaker_edit.html

* speaker_create now uses takeflight theme

* proposal_submit_kind now uses takeflight theme

* fixes bug in form_snippet

* Optimises proposals_submit_kind

* proposal_submit now uses wagtail theme

* Proposal_edit now uses new theme

* More forms

* Proposal details page now loads from take flight theme

* proposal_fields now looks nicer under the take flight theme

* proposal_speaker_manage rethemed
from django.conf import settings
from django.conf.urls import patterns, include, url
from django.conf.urls.static import static
from django.views.generic import TemplateView

from wagtail.wagtailadmin import urls as wagtailadmin_urls
from wagtail.wagtailcore import urls as wagtail_urls

from django.contrib import admin

import symposion.views


urlpatterns = [
    #url(r"^$", TemplateView.as_view(template_name="homepage.html"), name="home"),
    url(r"^admin/", include(admin.site.urls)),

    url(r"^account/", include("account.urls")),

    url(r"^dashboard/", symposion.views.dashboard, name="dashboard"),

    url(r"^speaker/", include("symposion.speakers.urls")),
    url(r"^proposals/", include("symposion.proposals.urls")),
    url(r"^sponsors/", include("symposion.sponsorship.urls")),
    url(r"^reviews/", include("symposion.reviews.urls")),
    url(r"^schedule/", include("symposion.schedule.urls")),

    url(r"^teams/", include("symposion.teams.urls")),

    url(r"^boxes/", include("pinax.boxes.urls")),

    url(r'^cms/', include(wagtailadmin_urls)),

    # Default catch-all for wagtail pages.
    url(r'^', include(wagtail_urls)),

    # Matches *NOTHING* -- remove once site_tree is fixed
    url(r"^$", TemplateView.as_view(template_name="homepage.html"), name="home"),



    # Required by registrasion
#    url(r'^register/', include('registrasion.urls')),
#    url(r'^nested_admin/', include('nested_admin.urls')),

    # Demo payment gateway and related features
#    url(r"^register/pinaxcon/", include("pinaxcon.registrasion.urls")),
]

urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)