Files @ 3118e4c11c59
Branch filter:

Location: symposion_app/manage.py

Christopher Neugebauer
Friday fixes (#36)

* Monkey-patches a version of send_email that allows BCCs into the django accounts signup process. wtf, etc.

* Adds alt-text to site header

* Favicon.
#!/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)