diff --git a/login_user_detail/README.rst b/login_user_detail/README.rst new file mode 100644 index 000000000..9d5221668 --- /dev/null +++ b/login_user_detail/README.rst @@ -0,0 +1,54 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +User Log Details +================ +Record Login user details & IP Address. + +Configuration +============= +* No additional configurations needed. + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Affero General Public License, v3.0 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developers: (V10) Saritha, + (V11) Saritha, + (V12) Saritha, + (V13) Saritha, + (V14) Muhammad P, + (V15) Noorjahan P, + (V16) Sabeel B, + (V17) Aysha Shalin, + Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/login_user_detail/__init__.py b/login_user_detail/__init__.py new file mode 100644 index 000000000..beb01bf10 --- /dev/null +++ b/login_user_detail/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from . import models diff --git a/login_user_detail/__manifest__.py b/login_user_detail/__manifest__.py new file mode 100644 index 000000000..eea1fd878 --- /dev/null +++ b/login_user_detail/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'User Log Details', + 'version': '17.0.1.0.0', + 'category': 'Extra Tools', + 'summary': 'Login user details & IP Address.', + 'description': """This module captures and stores user login details, + including username, login date and IP address, providing a comprehensive + record of user login activities.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base'], + 'data': [ + 'security/ir.model.access.csv', + 'views/login_detail_views.xml' + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/login_user_detail/doc/RELEASE_NOTES.md b/login_user_detail/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..06cd697ec --- /dev/null +++ b/login_user_detail/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 29.11.2023 +#### Version 17.0.1.0.0 +##### ADD + +- Initial Commit for User Log Details diff --git a/login_user_detail/models/__init__.py b/login_user_detail/models/__init__.py new file mode 100644 index 000000000..2754c7735 --- /dev/null +++ b/login_user_detail/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from . import login_detail +from . import res_users diff --git a/login_user_detail/models/login_detail.py b/login_user_detail/models/login_detail.py new file mode 100644 index 000000000..cf60ef708 --- /dev/null +++ b/login_user_detail/models/login_detail.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +from odoo import fields, models + + +class LoginDetail(models.Model): + """ Class for the model login_detail contains fields related to + the model.""" + _name = 'login.detail' + _description = 'Login Detail' + + name = fields.Char(string="User Name", help="Name of logged in user") + date_time = fields.Datetime( + string="Login Date And Time", + default=lambda self: fields.datetime.now(), + help="Date and time of log in") + ip_address = fields.Char(string="IP Address", help="IP address of login") diff --git a/login_user_detail/models/res_users.py b/login_user_detail/models/res_users.py new file mode 100644 index 000000000..eabecd5ac --- /dev/null +++ b/login_user_detail/models/res_users.py @@ -0,0 +1,48 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################### +import logging +from itertools import chain +from odoo.http import request +from odoo import api, models + +_logger = logging.getLogger(__name__) +USER_PRIVATE_FIELDS = ['password'] +concat = chain.from_iterable + + +class ResUsers(models.Model): + """ Inherits 'res.users' to add custom functionality for logging the login + details of user. """ + _inherit = 'res.users' + + @api.model + def _check_credentials(self, password, user_agent_env): + """ Check user credentials during login and log the login details.""" + result = super(ResUsers, self)._check_credentials( + password, user_agent_env) + ip_address = request.httprequest.environ['REMOTE_ADDR'] + vals = { + 'name': self.name, + 'ip_address': ip_address + } + self.env['login.detail'].sudo().create(vals) + return result diff --git a/login_user_detail/security/ir.model.access.csv b/login_user_detail/security/ir.model.access.csv new file mode 100644 index 000000000..020591571 --- /dev/null +++ b/login_user_detail/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_login_detail_user,access.login.detail.user,model_login_detail,base.group_user,1,1,1,1 diff --git a/login_user_detail/static/description/assets/icons/capture (1).png b/login_user_detail/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/login_user_detail/static/description/assets/icons/capture (1).png differ diff --git a/login_user_detail/static/description/assets/icons/check.png b/login_user_detail/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/login_user_detail/static/description/assets/icons/check.png differ diff --git a/login_user_detail/static/description/assets/icons/chevron.png b/login_user_detail/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/login_user_detail/static/description/assets/icons/chevron.png differ diff --git a/login_user_detail/static/description/assets/icons/cogs.png b/login_user_detail/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/login_user_detail/static/description/assets/icons/cogs.png differ diff --git a/login_user_detail/static/description/assets/icons/consultation.png b/login_user_detail/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/login_user_detail/static/description/assets/icons/consultation.png differ diff --git a/login_user_detail/static/description/assets/icons/ecom-black.png b/login_user_detail/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/login_user_detail/static/description/assets/icons/ecom-black.png differ diff --git a/login_user_detail/static/description/assets/icons/education-black.png b/login_user_detail/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/login_user_detail/static/description/assets/icons/education-black.png differ diff --git a/login_user_detail/static/description/assets/icons/hotel-black.png b/login_user_detail/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/login_user_detail/static/description/assets/icons/hotel-black.png differ diff --git a/login_user_detail/static/description/assets/icons/img.png b/login_user_detail/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/login_user_detail/static/description/assets/icons/img.png differ diff --git a/login_user_detail/static/description/assets/icons/license.png b/login_user_detail/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/login_user_detail/static/description/assets/icons/license.png differ diff --git a/login_user_detail/static/description/assets/icons/lifebuoy.png b/login_user_detail/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/login_user_detail/static/description/assets/icons/lifebuoy.png differ diff --git a/login_user_detail/static/description/assets/icons/manufacturing-black.png b/login_user_detail/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/login_user_detail/static/description/assets/icons/manufacturing-black.png differ diff --git a/login_user_detail/static/description/assets/icons/photo-capture.png b/login_user_detail/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/login_user_detail/static/description/assets/icons/photo-capture.png differ diff --git a/login_user_detail/static/description/assets/icons/pos-black.png b/login_user_detail/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/login_user_detail/static/description/assets/icons/pos-black.png differ diff --git a/login_user_detail/static/description/assets/icons/puzzle.png b/login_user_detail/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/login_user_detail/static/description/assets/icons/puzzle.png differ diff --git a/login_user_detail/static/description/assets/icons/restaurant-black.png b/login_user_detail/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/login_user_detail/static/description/assets/icons/restaurant-black.png differ diff --git a/login_user_detail/static/description/assets/icons/service-black.png b/login_user_detail/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/login_user_detail/static/description/assets/icons/service-black.png differ diff --git a/login_user_detail/static/description/assets/icons/trading-black.png b/login_user_detail/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/login_user_detail/static/description/assets/icons/trading-black.png differ diff --git a/login_user_detail/static/description/assets/icons/training.png b/login_user_detail/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/login_user_detail/static/description/assets/icons/training.png differ diff --git a/login_user_detail/static/description/assets/icons/update.png b/login_user_detail/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/login_user_detail/static/description/assets/icons/update.png differ diff --git a/login_user_detail/static/description/assets/icons/user.png b/login_user_detail/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/login_user_detail/static/description/assets/icons/user.png differ diff --git a/login_user_detail/static/description/assets/icons/wrench.png b/login_user_detail/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/login_user_detail/static/description/assets/icons/wrench.png differ diff --git a/login_user_detail/static/description/assets/misc/Cybrosys R.png b/login_user_detail/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/login_user_detail/static/description/assets/misc/Cybrosys R.png differ diff --git a/login_user_detail/static/description/assets/misc/email.svg b/login_user_detail/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/login_user_detail/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/login_user_detail/static/description/assets/misc/phone.svg b/login_user_detail/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/login_user_detail/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/login_user_detail/static/description/assets/misc/star (1) 2.svg b/login_user_detail/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/login_user_detail/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/login_user_detail/static/description/assets/misc/support (1) 1.svg b/login_user_detail/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/login_user_detail/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/login_user_detail/static/description/assets/misc/support-email.svg b/login_user_detail/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/login_user_detail/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/login_user_detail/static/description/assets/misc/tick-mark.svg b/login_user_detail/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/login_user_detail/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/login_user_detail/static/description/assets/misc/whatsapp 1.svg b/login_user_detail/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/login_user_detail/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/login_user_detail/static/description/assets/misc/whatsapp.svg b/login_user_detail/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/login_user_detail/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/login_user_detail/static/description/assets/modules/1.gif b/login_user_detail/static/description/assets/modules/1.gif new file mode 100644 index 000000000..ae3a880a2 Binary files /dev/null and b/login_user_detail/static/description/assets/modules/1.gif differ diff --git a/login_user_detail/static/description/assets/modules/2.png b/login_user_detail/static/description/assets/modules/2.png new file mode 100644 index 000000000..8513873ea Binary files /dev/null and b/login_user_detail/static/description/assets/modules/2.png differ diff --git a/login_user_detail/static/description/assets/modules/3.png b/login_user_detail/static/description/assets/modules/3.png new file mode 100644 index 000000000..cb17cf612 Binary files /dev/null and b/login_user_detail/static/description/assets/modules/3.png differ diff --git a/login_user_detail/static/description/assets/modules/4.jpg b/login_user_detail/static/description/assets/modules/4.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/login_user_detail/static/description/assets/modules/4.jpg differ diff --git a/login_user_detail/static/description/assets/modules/5.jpg b/login_user_detail/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..5141a7802 Binary files /dev/null and b/login_user_detail/static/description/assets/modules/5.jpg differ diff --git a/login_user_detail/static/description/assets/modules/6.png b/login_user_detail/static/description/assets/modules/6.png new file mode 100644 index 000000000..0e311ca87 Binary files /dev/null and b/login_user_detail/static/description/assets/modules/6.png differ diff --git a/login_user_detail/static/description/assets/screenshots/1.png b/login_user_detail/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..a8b759d28 Binary files /dev/null and b/login_user_detail/static/description/assets/screenshots/1.png differ diff --git a/login_user_detail/static/description/assets/screenshots/2.png b/login_user_detail/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..fa7cf583c Binary files /dev/null and b/login_user_detail/static/description/assets/screenshots/2.png differ diff --git a/login_user_detail/static/description/assets/screenshots/hero.gif b/login_user_detail/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..dd4f86398 Binary files /dev/null and b/login_user_detail/static/description/assets/screenshots/hero.gif differ diff --git a/login_user_detail/static/description/banner.png b/login_user_detail/static/description/banner.png new file mode 100644 index 000000000..3bedf7981 Binary files /dev/null and b/login_user_detail/static/description/banner.png differ diff --git a/login_user_detail/static/description/icon.png b/login_user_detail/static/description/icon.png new file mode 100644 index 000000000..b90fc6edf Binary files /dev/null and b/login_user_detail/static/description/icon.png differ diff --git a/login_user_detail/static/description/index.html b/login_user_detail/static/description/index.html new file mode 100644 index 000000000..3f073f1f7 --- /dev/null +++ b/login_user_detail/static/description/index.html @@ -0,0 +1,531 @@ + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ User Log Details

+

+ Record User Login Details, Login Date and IP Address. +

+
+ +
+
+
+
+
+

Key Highlights +

+
+
+
+
+
+ +
+
+

User Login Details.

+

View User Login Details, Login Date and IP Address. +

+
+
+
+
+
+
+ +
+
+

Community, Enterprise and Odoo.sh Support.

+

Available in Odoo 17.0 Community, Enterprise and Odoo.sh. +

+
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+

+ Login Details Menu.

+
+
+
+
+
+
+ +
+
+

+ Display User Login Detail.

+

+ Display User Login Detail, Including the User Name, Login Date And Time, and IP Address. +

+
+
+
+
+
+
+
    +
  • + Records Details of User Login. +
  • +
  • + Records User Name, Login Date and Time and IP Address. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:29th November 2023 +
+

+ Initial Commit for User Log Details.

+
+
+
+
+
+
+
+

Related Products

+
+
+ +
+
+

Our Services

+
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire Odoo Developer

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Licensing Consultancy

+
+
+
+
+
+
+

Our Industries

+
+
+
+
+
+
+ +

Trading

+

Easily procure and sell your products

+
+
+
+
+ +

POS

+

Easy configuration and convivial experience

+
+
+
+
+ +

Education

+

A platform for educational management

+
+
+
+
+ +

Manufacturing

+

Plan, track and schedule your operations

+
+
+
+
+ +

E-commerce & Website

+

Mobile friendly, awe-inspiring product pages

+
+
+
+
+ +

Service Management

+

Keep track of services and invoice

+
+
+
+
+ +

Restaurant

+

Run your bar or restaurant methodically

+
+
+
+
+ +

Hotel Management

+

An all-inclusive hotel management application

+
+
+
+
+
+
+

Support

+
+
+
+
+
+
+
+ +
+ Need + Help? +

Got questions or need help? Get in touch.

+
odoo@cybrosys.com +
+
+
+
+
+
+
+
+ +
+ WhatsApp +

Say hi to us on WhatsApp!

+
+91 + 99456767686
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/login_user_detail/views/login_detail_views.xml b/login_user_detail/views/login_detail_views.xml new file mode 100644 index 000000000..27e94aada --- /dev/null +++ b/login_user_detail/views/login_detail_views.xml @@ -0,0 +1,40 @@ + + + + + login.detail.view.form + login.detail + +
+ + + + + + + +
+
+
+ + + login.detail.view.tree + login.detail + + + + + + + + + + + Login Detail + login.detail + tree,form + + + +