diff options
| author | Mqdd <ahmadmiqdad27@gmail.com> | 2026-02-27 09:54:01 +0700 |
|---|---|---|
| committer | Mqdd <ahmadmiqdad27@gmail.com> | 2026-02-27 09:54:01 +0700 |
| commit | 3e08828c8e0238478a9b2575aa0705ab89124050 (patch) | |
| tree | 441834e5b1b19dda0b58d2d67936686aa3771cf8 /indoteknik_custom/views/token_log.xml | |
| parent | 687e462aaf3112d3b8a7dcecfc8c50582c531798 (diff) | |
| parent | 523491c16ccac66b2464654bdd1969b444459466 (diff) | |
Merge branch 'odoo-backup' of https://bitbucket.org/altafixco/indoteknik-addons into odoo-backup
Diffstat (limited to 'indoteknik_custom/views/token_log.xml')
| -rw-r--r-- | indoteknik_custom/views/token_log.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/indoteknik_custom/views/token_log.xml b/indoteknik_custom/views/token_log.xml new file mode 100644 index 00000000..77e6dd48 --- /dev/null +++ b/indoteknik_custom/views/token_log.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> +<odoo> + <record id="token_log_tree" model="ir.ui.view"> + <field name="name">token.log.tree</field> + <field name="model">token.log</field> + <field name="arch" type="xml"> + <tree editable="top" default_order="create_date desc"> + <field name="token"/> + <field name="expires_at"/> + <field name="token_from"/> + <field name="created_at"/> + <field name="created_by"/> + <field name="source"/> + <field name="is_active" widget="boolean_toggle"/> + </tree> + </field> + </record> + + <record id="token_log_action" model="ir.actions.act_window"> + <field name="name">Token Log</field> + <field name="type">ir.actions.act_window</field> + <field name="res_model">token.log</field> + <field name="view_mode">tree,form</field> + </record> + + <menuitem + action="token_log_action" + id="token_log" + parent="base.menu_users" + name="Token Log" + sequence="1" + /> +</odoo> |
