group-policy / horizon

Horizon is a Django-based project aimed at providing a complete OpenStack Dashboard along with an extensible framework for building new dashboards from reusable components.
http://openstack.org
Apache License 2.0
0 stars 1 forks source link

Group Details should list L2Policy and L3Policy name:uuid and with hyperlink #31

Closed snaiksat closed 10 years ago

snaiksat commented 10 years ago

The hyperlink will be to a page which has L2Policy and L3Policy details.

udaycode commented 10 years ago

Please provide API methods to extract these details.

mageshgv commented 10 years ago

Sorry. We have to add these operations to api/grouppolicy.py

neutronclient(request).list_l3_policies(**kwargs).get('l3_policies') neutronclient(request).show_l3_policy(pc_id).get('l3_policy')

neutronclient(request).list_l2_policies(**kwargs).get('l2_policies') neutronclient(request).show_l2_policy(pc_id).get('l2_policy')

udaycode commented 10 years ago

Added these methods and updated the group details tab with these.