24 lines
661 B
Python
24 lines
661 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': '校园登录主题',
|
|
'summary': '把 Odoo 登录页美化成教育网站风格',
|
|
'description': '''
|
|
纯前端主题模块,只改登录页外观,不新增任何业务数据:
|
|
- 整页渐变背景(教育紫)
|
|
- 玻璃质感登录卡片 + 品牌标题
|
|
- 登录按钮与主色统一
|
|
''',
|
|
'category': 'Education',
|
|
'version': '1.0',
|
|
'depends': ['web'],
|
|
'data': [
|
|
'views/login_templates.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_frontend': [
|
|
'yuthon_login_theme/static/src/css/login.css',
|
|
],
|
|
},
|
|
'installable': True,
|
|
}
|