Files @ 1ba1a97c4555
Branch filter:

Location: symposion_app/manage.py

Sachi King
move templates out of vendor specific locations

Lets not kid ourselves. The whole apps templates are client specific.
Lets just remove that and not think it isn't.
#!/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)