OpenStack(kilo)界面dashboard的二次开发(二)-增加PanelGroup
2021/5/7 10:30:22
本文主要是介绍OpenStack(kilo)界面dashboard的二次开发(二)-增加PanelGroup,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
上一博文开了一个头,简单的总结了下代码结构及Panel的增加,这一篇对Panelgroup的增加做一个详细的总结。
增加Panelgroup:
Panelgroup字面意思很好理解就是panel组,在openstack的界面中就是多个panel的集合。上一次的代码分析中其实已经有了对PanelGroup的简单介绍,这次就看看如何增加panelgroup。
这次直接查看Admin(管理员)Dashboard下的dashboard.py
1|-dashboard.py 2from django.utils.translation import ugettext_lazy as _ 4import horizon 7class SystemPanels(horizon.PanelGroup): slug = "admin" name = _("System") panels = ('overview', 'metering', 'hypervisors', 'aggregates', 'instances', 'volumes', 'flavors', 'images', 'networks', 'routers', 'defaults', 'metadata_defs', 'info', 'mypanel') #上一篇博文中增加的mypanel 15class Admin(horizon.Dashboard): name = _("Admin") slug = "admin" panels = (SystemPanels,) default_panel = 'overview' permissions = ('openstack.roles.admin',) 23horizon.register(Admin)
以上代码中的class SystemPanels继承的是horizon的PanelGroup,说明该类就是描述‘系统’这个panelgroup的。现在模仿这个增加一个。
修改后的dashboard.py:
1from django.utils.translation import ugettext_lazy as _ 3import horizon 6class SystemPanels(horizon.PanelGroup): slug = "systempanel" name = _("System") panels = ('overview', 'metering', 'hypervisors', 'aggregates', 'instances', 'volumes', 'flavors', 'images', 'networks', 'routers', 'defaults', 'metadata_defs', 'info') 13class MyPanels(horizon.PanelGroup): slug = "mypanelgroup" name = "Mypanelgroup" panels = ('mypanel',) 19class Admin(horizon.Dashboard): name = _("Admin") slug = "admin" panels = (SystemPanels, MyPanels,) default_panel = 'overview' permissions = ('openstack.roles.admin',) 27horizon.register(Admin)
将自己加的mypanel加到了这个Panelgroup中,然后重启一下httpd服务,查看页面如下:
这篇关于OpenStack(kilo)界面dashboard的二次开发(二)-增加PanelGroup的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15在使用平台私钥进行解密时提示 "私钥解密失败" 错误信息是什么原因?-icode9专业技术文章分享
- 2024-11-15Layui框架有哪些方式引入?-icode9专业技术文章分享
- 2024-11-15Layui框架中有哪些减少对全局环境的污染方法?-icode9专业技术文章分享
- 2024-11-15laydate怎么关闭自动的日期格式校验功能?-icode9专业技术文章分享
- 2024-11-15laydate怎么取消初始日期校验?-icode9专业技术文章分享
- 2024-11-15SendGrid 的邮件发送时,怎么设置回复邮箱?-icode9专业技术文章分享
- 2024-11-15使用 SendGrid API 发送邮件后获取到唯一的请求 ID?-icode9专业技术文章分享
- 2024-11-15mailgun 发送邮件 tags标签最多有多少个?-icode9专业技术文章分享
- 2024-11-15mailgun 发送邮件 怎么批量发送给多个人?-icode9专业技术文章分享
- 2024-11-15如何搭建web开发环境并实现 web项目在浏览器中访问?-icode9专业技术文章分享