I extend <t t-extend='UserMenu'> but no effect need a help...
This my openerp.py file
{'name': 'Custom Preference Menu','version': '1.0',
'category': 'Tools','sequence': 1,
'summary': 'Custom unused menus from User’s Preference Menu',
'description': '''Custom Preference Menu======================''',
'author': 'My Business Solutions Pvt. Ltd.','website': 'http://www.mycomp.co.in',
'depends': ['base'],'data': [],'demo_xml': [],'qweb': ['static/src/xml/template.xml'],
'installable': True,'application': True,'auto_install': False,}
template.xml file--
<?xml version="1.0" encoding="utf-8"?>
<openerp><templates id='template' xml:space='preserve'>
<t t-extend='UserMenu'><t t-jquery='.dropdown-menu' t-operation='replace'>
<ul class='dropdown-menu'><li><a href='#' data-menu='settings'>Preferences</a>
</li><li><a href='#' data-menu='about'>About Odoo</a>
</li><!--<li><a href='#' data-menu='logout'>Log out</a></li>--></ul></t></t></templates>
</openerp>