Files @ 2a720bd46bb4
Branch filter:

Location: symposion_app/manage.py

Joel Addison
Tickets for LCA2021

Disable lots of inventory that does not exist for a virtual conf.
Add Swag Badge category and product.
Adjust attendee profile to hide irrelevant questions.
#!/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)