Files @ 448aa7255869
Branch filter:

Location: symposion_app/manage.py

Nick Seidenman (N6)
Added favicon and special events pdf to bring this up to look/feel of wooden site.

Removed additional (and completely superfluous) styling in app.css that was otherwise making
our site look gluggy.

Mod'd fixtures (and updated db) to reflect PyCon rather than PinaxCon.
#!/usr/bin/env python

import os
import sys


if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pinaxcon.settings")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)