sdn controllers: list, create, show
[osm/LW-UI.git] / sf_t3d / settings.py
index 1020acd..658bafd 100644 (file)
@@ -29,8 +29,8 @@ ALLOWED_HOSTS = []
 
 AUTH_USER_MODEL = "sf_user.CustomUser"
 
-SITE_NAME = "OSM Light Weight"
-SHORT_SITE_NAME = "OSM-LW-UI"
+SITE_NAME = "Open Source MANO"
+SHORT_SITE_NAME = "OSM"
 
 LOGIN_URL = '/auth/'
 LOGOUT_URL = '/auth/'
@@ -48,7 +48,8 @@ INSTALLED_APPS = [
     'sf_user',
     'projecthandler',
     'vimhandler',
-    'instancehandler'
+    'instancehandler',
+    'sdnctrlhandler'
 ]
 
 MIDDLEWARE_CLASSES = [
@@ -80,6 +81,7 @@ TEMPLATES = [
             os.path.join(BASE_DIR, 'projecthandler', 'template', 'project'),
             os.path.join(BASE_DIR, 'vimhandler', 'template'),
             os.path.join(BASE_DIR, 'instancehandler', 'template'),
+            os.path.join(BASE_DIR, 'sdnctrlhandler', 'template'),
         ],
         'APP_DIRS': True,
         'OPTIONS': {
@@ -92,7 +94,7 @@ TEMPLATES = [
             ],
             'libraries':{
                 'get': 'sf_t3d.templatetags.get',
-
+                'date_tag': 'sf_t3d.templatetags.datetag',
             }
         },
     },