Files @ 09725bede047
Branch filter:

Location: symposion_app/pinaxcon/wsgi.py

Christopher Neugebauer
Modifications to review_admin.html (#62)

* Modifications to review_admin.html

* Adds “submit & jump to random proposal” button

* If user has a speaker profile, display their speaker profile name alongside their comments instead of their user name.
import os

os.environ.setdefault("DEBUG", "0")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pinaxcon.settings")

from django.core.wsgi import get_wsgi_application  # noqa

from dj_static import Cling, MediaCling  # noqa

application = Cling(MediaCling(get_wsgi_application()))