Browse Source
[FIX] web_responsive: Change edit accesskey
* Change accesskey for `edit` in form view back to `e` to fix #587
pull/591/head
Dave Lasley
8 years ago
No known key found for this signature in database
GPG Key ID: 7DDBA4BA81B934CF
2 changed files with
19 additions and
1 deletions
-
web_responsive/__manifest__.py
-
web_responsive/static/src/xml/form_view.xml
|
|
@ -1,5 +1,5 @@ |
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
# Copyright 2016 LasLabs Inc. |
|
|
|
# Copyright 2016-2017 LasLabs Inc. |
|
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). |
|
|
|
|
|
|
|
{ |
|
|
@ -19,4 +19,7 @@ |
|
|
|
'views/assets.xml', |
|
|
|
'views/web.xml', |
|
|
|
], |
|
|
|
'qweb': [ |
|
|
|
'static/src/xml/form_view.xml', |
|
|
|
], |
|
|
|
} |
|
|
@ -0,0 +1,15 @@ |
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
<!-- |
|
|
|
Copyright 2017 LasLabs Inc. |
|
|
|
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html). |
|
|
|
--> |
|
|
|
|
|
|
|
<templates id="form_view" xml:space="preserve"> |
|
|
|
|
|
|
|
<t t-extend="FormView.buttons"> |
|
|
|
<t t-jquery="button[accesskey='a']" t-operation="attributes"> |
|
|
|
<attribute name="accesskey">e</attribute> |
|
|
|
</t> |
|
|
|
</t> |
|
|
|
|
|
|
|
</templates> |