murano/dashboard
Timur Nurlygayanov 1571d0775a Added new files. 2013-02-16 03:39:17 -08:00
..
windc Added new files. 2013-02-16 03:39:17 -08:00
ReadMe.txt Updated design. Removed extra code. 2013-02-16 03:10:02 -08:00

ReadMe.txt

# TO DO: 
# 1. Add new functional for services and data centers
# 2. Fix issue with list of services: services table shoudl show services for
#    specific data center

This file is described how to install new tab on horizon dashboard.
We should do the following:
 1. Copy directory 'windc' to directory '/opt/stack/horizon/openstack_dashboard/dashboards/project'
 2. Edit file '/opt/stack/horizon/openstack_dashboard/dashboards/project/dashboard.py'
    Add line with windc project:
	
    ...
class BasePanels(horizon.PanelGroup):
    slug = "compute"
    name = _("Manage Compute")
    panels = ('overview',
              'instances',
              'volumes',
              'images_and_snapshots',
              'access_and_security',
              'networks',
              'routers',
              'windc')

    ...

 3. Run the test Django server:
    cd /opt/stack/horizon
    python manage.py runserver 67.207.197.36:8080