web/manage.py
author grandjoncl
Thu, 20 Sep 2012 12:43:02 +0200
changeset 791 12ba862f33fa
parent 660 d9f2a953bea5
permissions -rw-r--r--
Creation of a page instead of pop up for the content creation, update and suppression Suppression of the "more option" bloc

#!/usr/bin/env python
import os
import sys

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

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)