Files @ 2a0c8cb4797c
Branch filter:

Location: conntrackt/projtest/manage.py

branko
CONNT-5: Added custom model form for Interface. Applied small improvement to EntityForm for styling. Implemented adding interfaces to entities from the entity details page. Updated representation of interfaces on entity details page. Updated view tests for the new functionality. Minor fix to EntityView.
#!/usr/bin/env python
import os
import sys

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

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)